diff options
author | sils <sils@sils.li> | 2023-01-20 18:45:09 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-01-20 18:45:09 +0100 |
commit | 2343104396e086bd763d994c2372dbfa03ccb85f (patch) | |
tree | 2ed068483e1c37d109d0955b8b44bf3c3c493835 /flake.nix | |
parent | Fix: declare xdg-portal (diff) | |
download | nix-config-2343104396e086bd763d994c2372dbfa03ccb85f.tar.gz nix-config-2343104396e086bd763d994c2372dbfa03ccb85f.zip |
Structure: Move configuration.nix into host specific file
This ensures that nixos-rebuild uses flakes and will probably have advantages in case I'll ever want to deploy multiple machines using this config.
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 16f49fb..37a7906 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ }: { nixosConfigurations.thinklappi = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - modules = [./configuration.nix]; + modules = [./sysconf/thinklappi.nix]; }; }; } |