diff options
| author | Fuwn <[email protected]> | 2024-09-19 15:52:36 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-19 15:52:36 -0700 |
| commit | 875af84f8185650cc26baef1939741527bbbaefc (patch) | |
| tree | 05cbd9581f3aefecde2b34817db2e7207d43a256 /hosts/himeji | |
| parent | himeji: add docker volume (diff) | |
| download | nixos-config-875af84f8185650cc26baef1939741527bbbaefc.tar.xz nixos-config-875af84f8185650cc26baef1939741527bbbaefc.zip | |
modules: nix options
Diffstat (limited to 'hosts/himeji')
| -rw-r--r-- | hosts/himeji/default.nix | 5 | ||||
| -rw-r--r-- | hosts/himeji/options.nix | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/hosts/himeji/default.nix b/hosts/himeji/default.nix index 46eac87..ea9fe7c 100644 --- a/hosts/himeji/default.nix +++ b/hosts/himeji/default.nix @@ -1,9 +1,12 @@ { secrets, pkgs, ... }: { imports = [ + ../../modules/nix + ../../disks/himeji.nix ./hardware-configuration.nix ../../modules/networking/vpn/tailscale.nix - ../../disks/himeji.nix + ../../modules/options.nix + ./options.nix ]; boot.tmp.cleanOnBoot = true; diff --git a/hosts/himeji/options.nix b/hosts/himeji/options.nix new file mode 100644 index 0000000..d8e2298 --- /dev/null +++ b/hosts/himeji/options.nix @@ -0,0 +1 @@ +{ config.modules.nix.extend = false; } |