diff options
| author | Fuwn <[email protected]> | 2025-01-02 01:20:55 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-01-02 01:20:55 -0800 |
| commit | 85e46deedbb32dfa1c37bfb6ca3a7fb10d7be446 (patch) | |
| tree | 18f7846f2bdcd3a8d1a41f972040aa981acc5780 /hosts/nara/configuration.nix | |
| parent | nara: move home-manager modules to home (diff) | |
| download | nixos-config-85e46deedbb32dfa1c37bfb6ca3a7fb10d7be446.tar.xz nixos-config-85e46deedbb32dfa1c37bfb6ca3a7fb10d7be446.zip | |
nara: move some core modules to base
Diffstat (limited to 'hosts/nara/configuration.nix')
| -rw-r--r-- | hosts/nara/configuration.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/nara/configuration.nix b/hosts/nara/configuration.nix index 89b4dc7..1517f20 100644 --- a/hosts/nara/configuration.nix +++ b/hosts/nara/configuration.nix @@ -1,5 +1,9 @@ { self, ... }: { - imports = [ "${self}/modules/mac" ]; + imports = [ + "${self}/modules/base" + "${self}/modules/mac" + ]; + system.stateVersion = 5; } |