sneeuwvlok/systems/x86_64-linux/manwe/default.nix
Chris Kruining ca9dc5c8c1
Some checks failed
Test action / kaas (push) Failing after 1s
.
2026-02-01 20:02:08 +01:00

42 lines
694 B
Nix

{ pkgs, ...}: {
imports = [
./disks.nix
./hardware.nix
];
system.activationScripts.remove-gtkrc.text = "rm -f /home/chris/.gtkrc-2.0";
services.logrotate.checkConfig = false;
environment.systemPackages = with pkgs; [ beyond-all-reason ];
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;
};
};
services.displayManager.autoLogin = {
enable = true;
user = "chris";
};
system.stateVersion = "23.11";
}