sneeuwvlok/machines/mandos/configuration.nix
2026-03-24 14:09:46 +00:00

31 lines
No EOL
396 B
Nix

{ ... }:
{
imports = [
./disks.nix
./hardware.nix
];
sneeuwvlok = {
hardware.has = {
gpu.nvidia = true;
audio = true;
};
boot = {
quiet = true;
animated = true;
};
desktop.use = "gamescope";
application = {
steam.enable = true;
};
editor = {
nano.enable = true;
};
};
system.stateVersion = "23.11";
}