34 lines
544 B
Nix
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";
|
|
}
|
|
|