sneeuwvlok/systems/x86_64-linux/manwe/default.nix
Chris Kruining 36f2f501fc
Some checks failed
Test action / kaas (push) Failing after 0s
.
2025-12-31 01:04:03 +01:00

41 lines
648 B
Nix

{...}: {
imports = [
./disks.nix
./hardware.nix
];
system.activationScripts.remove-gtkrc.text = "rm -f /home/chris/.gtkrc-2.0";
services.logrotate.checkConfig = false;
sneeuwvlok = {
hardware.has = {
gpu.amd = true;
bluetooth = true;
audio = true;
};
boot = {
quiet = true;
animated = true;
};
desktop.use = "cosmic";
application = {
steam.enable = true;
# zen.enable = true;
};
editor = {
nano.enable = true;
};
};
services.displayManager.autoLogin = {
enable = true;
user = "chris";
};
system.stateVersion = "23.11";
}