sneeuwvlok/machines/tulkas/configuration.nix
2026-03-25 06:45:43 +00:00

34 lines
No EOL
459 B
Nix

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