sneeuwvlok/systems/x86_64-linux/manwe/default.nix
2025-07-31 09:21:11 +02:00

32 lines
415 B
Nix

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