diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-24 16:21:11 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-24 16:21:11 +0530 |
commit | 83b7aae54bde197ad7d6a6e0615fc5770929625a (patch) | |
tree | c3d35eec1194dbb4f8872f3f940ebcf014105aa6 /flake.nix | |
parent | 92f6bc769cb91793e1d632ee4a90c196ba5a4a28 (diff) |
common/nix: init
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -21,10 +21,13 @@ makeNixos = host: system: lib.nixosSystem { inherit system; modules = [ + { + networking.hostName = host; + nix.nixPath = [ "nixpkgs=${nixpkgs}" ]; + } + ./userdata.nix - { networking.hostName = host; } ./nixos/${host}/configuration.nix - sops-nix.nixosModules.sops ]; }; |