diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2021-09-04 19:59:03 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2021-09-04 19:59:03 +0200 |
commit | 7dfa2579be1344c138c1ab8fe914dc60039c2a48 (patch) | |
tree | cd95253c79c362d713fb21547171138f21c84731 /flake.nix | |
parent | dfbfedbcfec564d2c19ca971f1206afe0e38dfe6 (diff) | |
download | nixos-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.nix | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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; |