27 lines
No EOL
347 B
Nix
27 lines
No EOL
347 B
Nix
{ ... }:
|
|
let
|
|
in
|
|
{
|
|
imports = [
|
|
./disks.nix
|
|
./hardware.nix
|
|
];
|
|
|
|
sneeuwvlok = {
|
|
hardware.has = {
|
|
gpu.amd = true;
|
|
bluetooth = true;
|
|
audio = true;
|
|
};
|
|
|
|
boot = {
|
|
quiet = true;
|
|
animated = true;
|
|
};
|
|
|
|
desktop.use = "gamescope";
|
|
theming.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
} |