31 lines
397 B
Nix
31 lines
397 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";
|
|
}
|