summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-09-04 19:59:03 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2021-09-04 19:59:03 +0200
commit7dfa2579be1344c138c1ab8fe914dc60039c2a48 (patch)
treecd95253c79c362d713fb21547171138f21c84731 /flake.nix
parentdfbfedbcfec564d2c19ca971f1206afe0e38dfe6 (diff)
downloadnixos-7dfa2579be1344c138c1ab8fe914dc60039c2a48.tar
nixos-7dfa2579be1344c138c1ab8fe914dc60039c2a48.tar.gz
nixos-7dfa2579be1344c138c1ab8fe914dc60039c2a48.tar.bz2
nixos-7dfa2579be1344c138c1ab8fe914dc60039c2a48.tar.xz
nixos-7dfa2579be1344c138c1ab8fe914dc60039c2a48.zip
feeds: install imm
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index d8684703..6d4f4217 100644
--- a/flake.nix
+++ b/flake.nix
@@ -22,9 +22,17 @@
22 ref = "master"; 22 ref = "master";
23 inputs.nixpkgs.follows = "nixpkgs"; 23 inputs.nixpkgs.follows = "nixpkgs";
24 }; 24 };
25
26 imm = {
27 type = "github";
28 owner = "k0ral";
29 repo = "imm";
30 ref = "master";
31 inputs.nixpkgs.follows = "nixpkgs";
32 };
25 }; 33 };
26 34
27 outputs = { self, nixpkgs, home-manager, sops-nix }@inputs: 35 outputs = { self, nixpkgs, home-manager, sops-nix, ... }@inputs:
28 let 36 let
29 inherit (builtins) attrNames attrValues elemAt toJSON isNull pathExists; 37 inherit (builtins) attrNames attrValues elemAt toJSON isNull pathExists;
30 inherit (nixpkgs) lib; 38 inherit (nixpkgs) lib;