diff options
| author | Baitinq <[email protected]> | 2022-09-21 17:30:36 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-22 00:18:59 +0200 |
| commit | 4bfaa637cf0782a9e7899bf73da7a47371c1a66e (patch) | |
| tree | d4777433eed01559e1b60e4ea7ddcae3bc058637 /flake.nix | |
| parent | Move hosts declaration to flake.nix (diff) | |
| download | nixos-config-4bfaa637cf0782a9e7899bf73da7a47371c1a66e.tar.gz nixos-config-4bfaa637cf0782a9e7899bf73da7a47371c1a66e.tar.bz2 nixos-config-4bfaa637cf0782a9e7899bf73da7a47371c1a66e.zip | |
mkHost: Add extraModules argument
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix index 7338341..97627c2 100644 --- a/flake.nix +++ b/flake.nix @@ -32,8 +32,8 @@ dotfiles = ./dotfiles; hosts = [ - { host = "phobos"; system = "x86_64-linux"; extraOverlays = [ ]; timezone = secrets.main_timezone; location = secrets.main_location; } - { host = "luna"; system = "x86_64-linux"; extraOverlays = [ ]; timezone = secrets.main_timezone; location = secrets.main_location; } + { host = "phobos"; system = "x86_64-linux"; extraOverlays = [ ]; extraModules = [ ]; timezone = secrets.main_timezone; location = secrets.main_location; } + { host = "luna"; system = "x86_64-linux"; extraOverlays = [ ]; extraModules = [ ]; timezone = secrets.main_timezone; location = secrets.main_location; } ]; hardwares = [ @@ -47,7 +47,6 @@ inherit (nixpkgs) lib; inherit inputs nixpkgs home-manager; inherit user secrets dotfiles hosts hardwares; - extraModules = [ ]; }; in { |