diff options
author | Aria <me@aria.rip> | 2023-12-11 19:52:21 +0000 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-12-11 19:52:21 +0000 |
commit | c19dc0924481c7edf4938f5aa105f481a787a30e (patch) | |
tree | c1dc11ac722136d3a2e929b79fa5461ba603b83f /nix-personal/flake.nix | |
parent | 688b6527809869465c75d9cb3413d8bcce7aff68 (diff) |
refactor(nix-personal): change folder structure
Diffstat (limited to 'nix-personal/flake.nix')
-rw-r--r-- | nix-personal/flake.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nix-personal/flake.nix b/nix-personal/flake.nix index e9722a4..7fe8056 100644 --- a/nix-personal/flake.nix +++ b/nix-personal/flake.nix @@ -10,7 +10,7 @@ }: let imports = [ disko.nixosModules.disko - ./configuration.nix + ./hosts/puppy.nix ]; in { devShells.x86_64-linux.default = let @@ -32,9 +32,8 @@ }; }; - # Also see the non-Flakes hive.nix example above. puppy = {...}: { - imports = imports; + inherit imports; }; }; }; |