sneeuwvlok/systems/x86_64-linux/mandos/default.nix

26 lines
No EOL
323 B
Nix

{ ... }:
let
in
{
imports = [
./disks.nix
./hardware.nix
];
sneeuwvlok = {
hardware.has = {
gpu.nvidia = true;
bluetooth = true;
audio = true;
};
boot = {
quiet = true;
animated = true;
};
desktop.use = "gamescope";
};
system.stateVersion = "23.11";
}