1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
inputs,
lib,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
];
boot.initrd.postDeviceCommands = lib.mkAfter ''
zfs rollback -r zpool/root@blank
'';
sops.defaultSopsFile = ../../../secrets/alice/secrets.yaml;
sops.gnupg.sshKeyPaths = ["/persist/etc/ssh/ssh_host_rsa_key"];
sops.age.sshKeyPaths = ["/persist/etc/ssh/ssh_host_ed25519_key"];
networking.hostId = "bc56f04f";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Helsinki";
i18n.defaultLocale = "en_US.UTF-8";
services.xserver.xkb.layout = "us";
environment.systemPackages = with pkgs; [
inputs.nvim-flake.packages.x86_64-linux.nvim
wget
keepassxc
firefox
jellyfin-mpv-shim
];
environment.persistence."/persist" = {
hideMounts = true;
directories = [
"/etc/nixos"
"/etc/ssh"
"/var/lib/tailscale"
];
};
services.openssh.enable = true;
services.pcscd.enable = true;
programs.gnupg.agent.enable = true;
system.stateVersion = "24.05";
}