aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/kaitain/default.nix
blob: 72aadff51bae0543212d364508bdbf3f1223c1b7 (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
{ config, inputs, lib, outputs, pkgs, ... }: {
  boot = {
    initrd.kernelModules = [ "zfs" ];
    #kernelPackages = pkgs.linuxPackages_6_10;
    loader = {
      efi.canTouchEfiVariables = true;
      systemd-boot.enable = true;
      timeout = 3;
    };
    supportedFilesystems = [ "zfs" ];
    zfs.devNodes = "/dev/disk/by-label";
  };

  environment.systemPackages = with pkgs; [
    git-review
  ];

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

  networking = {
    hostId = "4b1f6e29";
    hostName = "kaitain";
    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.openFirewall = false;
  services.xserver.videoDrivers = lib.mkForce [ "vmware" "virtualbox" "modesetting" ];

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

    secrets = {
      "nix-access-token-github" = {};
    };
  };

  system.stateVersion = "23.11";

  #systemd.user.services = let
  #  vbox-client = desc: flags: {
  #    description = "VirtualBox Guest: ${desc}";

  #    wantedBy = [ "graphical-session.target" ];
  #    requires = [ "dev-vboxguest.device" ];
  #    after = [ "dev-vboxguest.device" ];

  #    unitConfig.ConditionVirtualization = "oracle";

  #    serviceConfig.ExecStart = "${config.boot.kernelPackages.virtualboxGuestAdditions}/bin/VBoxClient -fv ${flags}";
  #    };
  #in {
  #  virtualbox-resize = vbox-client "Resize" "--vmsvga";
  #  virtualbox-clipboard = vbox-client "Clipboard" "--clipboard";
  #};

  users.users.root.openssh.authorizedKeys.keys = [
    (builtins.readFile ../common/users/nipsy/keys/id_att.pub)
  ];

  virtualisation.virtualbox.guest.enable = true;
}