diff options
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix new file mode 100644 index 0000000..eac33b7 --- /dev/null +++ b/configuration.nix @@ -0,0 +1,18 @@ +{ config, pkgs, ... }: + +{ + imports = + [ + ./hardware-configuration.nix + ./env.nix + ./packages.nix + ./bootloader.nix + ./plasma.nix + ./networking.nix + ./users.nix + ./sound.nix + ./cups.nix + ./args.nix + ]; + system.stateVersion = "23.05"; +} |