diff options
author | stuebinm | 2022-01-09 08:09:39 +0100 |
---|---|---|
committer | stuebinm | 2022-01-09 08:12:16 +0100 |
commit | e88fed18f499a3e8ac98c772bbb62f00d1f8d1d7 (patch) | |
tree | 2acb627ac0bf070d42f3b214015fdf1b4e920c44 /default.nix | |
parent | eb97c76228dd9675ccfe4662ca551f07327ca9b4 (diff) |
use flakes instead of niv & stuff
Diffstat (limited to '')
-rw-r--r-- | default.nix | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/default.nix b/default.nix deleted file mode 100644 index f13eb77..0000000 --- a/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -let - sources = import ./nix/sources.nix; - pkgs = import ./pkgs {}; - - hosts = import ./lib/hosts.nix { - inherit pkgs; - hostsDir = ./hosts; - commonImports = [ ./common ]; - pkgsPath = ./pkgs; - }; -in -{ - inherit sources pkgs; - inherit (hosts) hosts groups; - deploy = import ./lib/deploy.nix { inherit pkgs; inherit (hosts) hosts groups; }; -} - - |