nix/denna: add to flake
Anirudh Oppiliappan x@icyphox.sh
Sun, 07 Jul 2024 09:55:40 +0300
1 files changed,
13 insertions(+),
1 deletions(-)
jump to
M
flake.nix
→
flake.nix
@@ -139,6 +139,18 @@ }
]; }; }; - }; + nixosConfigurations = { + denna = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ({ config = { nix.registry.nixpkgs.flake = nixpkgs; }; }) + { + imports = [ ./hosts/denna/configuration.nix ]; + _module.args.self = self; + } + ]; + }; + }; + }; }