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

44 lines
No EOL
744 B
Nix

{ pkgs, ...}: {
imports = [
./disks.nix
./hardware.nix
];
nixpkgs.hostPlatform = "x86_64-linux";
system.activationScripts.remove-gtkrc.text = "rm -f /home/chris/.gtkrc-2.0";
services.logrotate.checkConfig = false;
environment.systemPackages = with pkgs; [ beyond-all-reason openrct2 ];
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";
}