nixos-config/hosts/hp/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2022-03-07 16:10:35 +00:00
{ config, lib, pkgs, ... }:
2021-04-10 16:55:17 +00:00
{
2021-12-10 06:34:46 +00:00
networking.hostName = "hp";
2021-04-10 16:55:17 +00:00
services = {
openssh.enable = true;
};
2021-10-10 08:21:36 +00:00
users.mutableUsers = false;
users.users.root.passwordFile = "/nix/persist/shadow_sean";
users.users.sean.passwordFile = "/nix/persist/shadow_sean";
2021-12-04 02:45:41 +00:00
environment.etc =
2022-03-07 16:10:35 +00:00
lib.genAttrs
2021-12-04 02:45:41 +00:00
[
"machine-id"
"NetworkManager/system-connections"
"ssh/ssh_host_ed25519_key"
"ssh/ssh_host_rsa_key"
2022-03-07 16:10:35 +00:00
]
(name: { source = "/nix/persist/etc/${name}"; });
2021-10-10 08:21:36 +00:00
2021-04-10 16:55:17 +00:00
sconfig = {
2021-09-07 02:36:43 +00:00
gnome = true;
2021-04-10 16:55:17 +00:00
profile = "desktop";
2022-03-03 15:46:24 +00:00
horizon.enable = true;
2022-05-11 15:50:52 +00:00
wg-home.enable = true;
2021-04-10 16:55:17 +00:00
};
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = false;
};
fileSystems = {
2021-10-10 08:21:36 +00:00
"/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
"/nix" = { device = "zroot/locker/nix"; fsType = "zfs"; };
2021-04-10 16:55:17 +00:00
"/home" = { device = "zroot/locker/home"; fsType = "zfs"; };
"/boot" = { device = "/dev/disk/by-partlabel/EFI\\x20system\\x20partition"; fsType = "vfat"; };
2021-12-05 00:58:08 +00:00
"/var/log" = { device = "/nix/persist/var/log"; noCheck = true; options = [ "bind" ]; };
};
2021-04-10 16:55:17 +00:00
2021-10-10 08:21:36 +00:00
system.stateVersion = "21.05";
2021-04-10 16:55:17 +00:00
}