24 lines
314 B
Nix
24 lines
314 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./disks.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
sneeuwvlok = {
|
|
hardware.has = {
|
|
gpu.amd = true;
|
|
bluetooth = true;
|
|
audio = true;
|
|
};
|
|
|
|
boot = {
|
|
quiet = true;
|
|
animated = true;
|
|
};
|
|
|
|
desktop.use = "gamescope";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|