config/hosts/fwminex/configuration.nix

170 lines
3.7 KiB
Nix
Raw Normal View History

2023-09-13 12:17:43 +03:00
{
config,
myData,
...
2023-09-17 07:06:19 +03:00
}: let
randr = import ./randr.nix;
in {
2023-11-28 22:57:58 +02:00
boot = {
initrd = {
availableKernelModules = ["usb_storage" "sd_mod" "xhci_pci" "thunderbolt" "nvme" "usbhid"];
2023-11-28 22:57:58 +02:00
};
loader.systemd-boot.enable = true;
supportedFilesystems = ["zfs"];
zfs = {
forceImportRoot = false;
devNodes = "/dev/disk/by-id/";
};
};
fileSystems = {
"/" = {
device = "rpool/nixos/root";
fsType = "zfs";
};
"/boot" = {
device = "/dev/disk/by-id/nvme-Samsung_SSD_970_EVO_Plus_2TB_S6P1NS0TA01331A_1-part2";
fsType = "vfat";
};
"/home" = {
device = "rpool/nixos/home";
fsType = "zfs";
};
"/nix" = {
device = "rpool/nixos/nix";
fsType = "zfs";
};
"/var/lib" = {
device = "rpool/nixos/var/lib";
fsType = "zfs";
};
"/var/log" = {
device = "rpool/nixos/var/log";
fsType = "zfs";
2023-09-13 12:17:43 +03:00
};
};
2023-09-14 12:40:16 +03:00
powerManagement.cpuFreqGovernor = "powersave";
hardware.cpu.intel.updateMicrocode = true;
nixpkgs.hostPlatform = "x86_64-linux";
2023-09-13 12:17:43 +03:00
boot.binfmt.emulatedSystems = ["aarch64-linux"];
2023-09-14 15:26:16 +03:00
systemd.services.zfs-mount.enable = false;
2023-09-13 12:17:43 +03:00
mj = {
stateVersion = "23.05";
timeZone = "Europe/Vilnius";
base = {
zfs.enable = true;
users = {
2023-12-11 20:05:32 +02:00
fullDesktop = true;
2023-09-13 12:17:43 +03:00
passwd = {
2023-11-27 17:54:44 +02:00
root.hashedPasswordFile = config.age.secrets.root-passwd-hash.path;
motiejus.hashedPasswordFile = config.age.secrets.motiejus-passwd-hash.path;
2023-09-13 12:17:43 +03:00
};
};
snapshot = {
enable = true;
mountpoints = ["/home" "/var/lib" "/var/log"];
};
unitstatus = {
enable = true;
email = "motiejus+alerts@jakstys.lt";
};
};
services = {
sshguard.enable = false;
2023-11-15 00:29:22 +02:00
tailscale = {
enable = true;
verboseLogs = true;
};
2023-09-18 19:29:27 +03:00
node_exporter = {
enable = true;
extraSubnets = [myData.subnets.vno1.cidr];
};
2023-09-13 12:17:43 +03:00
deployerbot = {
follower = {
inherit (myData.hosts."vno1-oh2.servers.jakst") publicKey;
2023-10-01 23:14:05 +03:00
2023-09-13 12:17:43 +03:00
enable = true;
uidgid = myData.uidgid.updaterbot-deployee;
sshAllowSubnets = with myData.subnets; [tailscale.sshPattern];
2023-09-13 12:17:43 +03:00
};
};
2023-09-15 13:23:52 +03:00
postfix = {
enable = true;
saslPasswdPath = config.age.secrets.sasl-passwd.path;
};
2023-09-13 12:17:43 +03:00
syncthing = {
2023-09-18 11:55:09 +03:00
enable = true;
2023-09-13 12:17:43 +03:00
dataDir = "/home/motiejus/";
user = "motiejus";
group = "users";
};
};
};
services.autorandr = {
enable = true;
profiles = {
default = {
2023-09-17 22:12:46 +03:00
fingerprint = {inherit (randr) eDP-1;};
config = {
DP-1.enable = false;
DP-2.enable = false;
DP-3.enable = false;
DP-4.enable = false;
2023-09-17 22:12:46 +03:00
eDP-1 = {
enable = true;
primary = true;
mode = "1920x1200";
2023-09-17 22:12:46 +03:00
crtc = 0;
position = "0x0";
rate = "59.88";
2023-09-17 22:02:30 +03:00
};
};
2023-09-17 22:12:46 +03:00
};
2023-09-17 22:02:30 +03:00
2023-09-17 07:06:19 +03:00
dualhome = {
2023-09-17 22:02:30 +03:00
fingerprint = {inherit (randr) eDP-1 DP-3 DP-4;};
2023-09-17 07:06:19 +03:00
config = {
eDP-1.enable = false;
DP-1.enable = false;
DP-2.enable = false;
DP-3 = {
enable = true;
mode = "2560x1440";
position = "0x0";
crtc = 1;
rate = "59.95";
};
2023-09-17 07:06:19 +03:00
DP-4 = {
enable = true;
mode = "2560x1440";
2023-09-17 07:39:00 +03:00
position = "2560x0";
2023-09-17 07:06:19 +03:00
primary = true;
2023-09-17 22:02:30 +03:00
crtc = 0;
rate = "59.95";
2023-09-17 07:06:19 +03:00
};
};
};
};
};
2023-09-13 12:17:43 +03:00
networking = {
2023-09-13 14:46:58 +03:00
hostId = "3a54afcd";
2023-09-13 12:17:43 +03:00
hostName = "fwminex";
domain = "motiejus.jakst";
2023-09-22 09:58:09 +03:00
firewall.rejectPackets = true;
2023-09-13 12:17:43 +03:00
};
}