34 lines
608 B
Nix
34 lines
608 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./modules/base.nix
|
|
./modules/audio/pipewire.nix
|
|
./modules/chaotic-nyx.nix
|
|
./modules/graphics/mesa-amd.nix
|
|
./modules/desktop
|
|
./modules/gaming.nix
|
|
./modules/peripherals.nix
|
|
];
|
|
|
|
networking.hostName = "nixos-gaming";
|
|
|
|
profiles.desktop = "kde";
|
|
# Moegliche Werte: "kde" "gnome" "budgie" "hyprland"
|
|
|
|
users.users.max = {
|
|
isNormalUser = true;
|
|
description = "max";
|
|
extraGroups = [
|
|
"wheel"
|
|
"networkmanager"
|
|
"audio"
|
|
"video"
|
|
"input"
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|