nixos-conf/hosts/x86_64-linux/lithium.nix

39 lines
816 B
Nix

{ ... }:
{
imports = [ ../../disko/luks-zfs-impermanence.nix ];
custom = {
platform.impermanence.enable = true;
roles = {
desktop.enable = true;
development.enable = true;
personalMachine.enable = true;
study.enable = true;
};
networking = {
printing.enable = true;
homeWg = {
enable = true;
guaSuffix = "3";
};
netflixWg = {
enable = true;
suffix = "8";
};
wireless.enable = true;
};
hardware = {
intelLaptop.enable = true;
monitors.enable = true;
};
services = {
borgClient.enable = true;
nixCacheClient = {
enable = true;
remoteBuilds.additional = true;
};
};
};
networking.hostId = "ca94a90c";
system.stateVersion = "25.05";
}