nixos-configuration/hosts/copper/configuration.nix
2024-05-29 02:05:52 +02:00

34 lines
544 B
Nix

{
imports = [
./hardware-configuration.nix
../../users/jalr
];
networking = {
hostName = "copper";
};
zramSwap = {
enable = true;
algorithm = "zstd";
memoryPercent = 60;
priority = 1;
};
jalr = {
bootloader = "systemd-boot";
bluetooth.enable = true;
uefi.enable = true;
gui.enable = true;
workstation.enable = true;
sdr.enable = true;
libvirt.enable = true;
autologin = {
enable = true;
username = "jalr";
};
};
system.stateVersion = "24.05";
}