diff options
author | sils <sils@sils.li> | 2022-12-07 16:57:03 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2022-12-07 16:57:03 +0100 |
commit | ebca4ea0f3c9dad986cf9963fdebcaeb003725fc (patch) | |
tree | d83a2ae0eea7a64b2850f925b3c71007596ba0a7 | |
parent | configure env vars (diff) | |
download | nix-config-ebca4ea0f3c9dad986cf9963fdebcaeb003725fc.tar.gz nix-config-ebca4ea0f3c9dad986cf9963fdebcaeb003725fc.zip |
move to /etc/nixos
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | configuration.nix (renamed from config.nix) | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index b2be92b..2346acd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ result +hardware-configuration.nix diff --git a/config.nix b/configuration.nix index a5dbd64..eac33b7 100644 --- a/config.nix +++ b/configuration.nix @@ -3,6 +3,7 @@ { imports = [ + ./hardware-configuration.nix ./env.nix ./packages.nix ./bootloader.nix @@ -13,4 +14,5 @@ ./cups.nix ./args.nix ]; + system.stateVersion = "23.05"; } |