aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/fangorn/default.nix
blob: cd0351207ae6b67b5d42f1074aa70003c91bde24 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{ config, inputs, outputs, pkgs, ... }: {
  boot = {
    kernelPackages = pkgs.linuxPackages_6_12;
    loader = {
      efi.canTouchEfiVariables = true;
      systemd-boot.enable = true;
      timeout = 3;
    };
    supportedFilesystems = [ "zfs" ];
    zfs = {
      devNodes = "/dev/disk/by-label";
      package = pkgs.master.zfs;
    };
  };

  environment.systemPackages = with pkgs; [
    signal-desktop
    wpa_supplicant
  ];

  imports = [
    ./disks.nix
    ./hardware-configuration.nix
    ../common/core
    #../common/optional/db.nix
    ../common/optional/dev.nix
    ../common/optional/ebooks.nix
    #../common/optional/games.nix
    ../common/optional/misc.nix
    ../common/optional/multimedia.nix
    ../common/optional/pipewire.nix
    ../common/optional/services/openssh.nix
    #../common/optional/services/tlp.nix
    ../common/optional/services/xorg.nix
    ../common/optional/sound.nix
    ../common/optional/wdt.nix
    ../common/optional/zfs.nix
    ../common/users/don
    ../common/users/nipsy
    ../common/users/root
  ];

  networking = {
    hostId = "6f1faddc";
    hostName = "fangorn";
    networkmanager.enable = true;
    nftables.enable = true;
  };

  nixpkgs = {
    config.allowUnfree = true;
    hostPlatform = "x86_64-linux";
    overlays = [
      outputs.overlays.additions
      outputs.overlays.modifications
      outputs.overlays.master-packages
      outputs.overlays.stable-packages
    ];
  };

  services.openssh.settings.X11Forwarding = true;
  services.xserver.desktopManager.xfce.enable = true;
  services.xserver.videoDrivers = [ "amdgpu" ];

  #sops = {
  #  age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
  #  defaultSopsFile = ../secrets/fangorn.yaml;

  #  secrets = {
  #    "nftables/ssh" = {};
  #    "nix-access-token-github" = {};
  #    "ssh_config".path = "/root/.ssh/config";
  #  };
  #};

  system.stateVersion = "23.11";

  #systemd.services."nftables-extra" = let rules_script = ''
  #    ${pkgs.nftables}/bin/nft -f ${config.sops.secrets."nftables/ssh".path}
  #  ''; in {
  #    description = "nftables extra firewall rules";
  #    reload = rules_script;
  #    script = rules_script;
  #    serviceConfig = {
  #      RemainAfterExit = true;
  #      Type = "oneshot";
  #    };
  #    unitConfig = {
  #      ConditionPathExists = config.sops.secrets."nftables/ssh".path;
  #      ReloadPropagatedFrom = "nftables.service";
  #    };
  #    wantedBy = [ "multi-user.target" ];
  #    after = [ "nftables.service" ];
  #    partOf = [ "nftables.service" ];
  #};

  #systemd.paths."nftables-extra" = {
  #  pathConfig = {
  #    PathExists = config.sops.secrets."nftables/ssh".path;
  #  };
  #  wantedBy = [ "multi-user.target" ];
  #};
}