nixos-config/configuration.nix
2024-08-06 18:14:34 +02:00

31 lines
781 B
Nix

{ ... }:
{
imports =
[
# Packages
./packages/pkg-customization.nix
./packages/pkg-dev.nix
./packages/pkg-firefox.nix
./packages/pkg-gaming.nix
./packages/pkg-hardware.nix
./packages/pkg-misc.nix
./packages/pkg-plasma.nix
./packages/pkg-steam.nix
./packages/pkg-system.nix
# Settings
./system/set-boot.nix
./system/set-controller.nix
./system/set-desktop.nix
./system/set-dev.nix
./system/set-hardware-configuration.nix
./system/set-hardware.nix
./system/set-locale.nix
./system/set-networking.nix
./system/set-systemd.nix
./system/set-system.nix
./system/set-updates.nix
./system/set-users.nix
];
system.stateVersion = "24.05";
}