aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury/system.nix
blob: b6a2a6b8c6a3ffc25a39a3e42f546e0c22908db4 (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
{
  pkgs,
  inputs,
  ...
}: {
  imports = [
    ./battery.nix

    inputs.nixos-facter-modules.nixosModules.facter
    {facter.reportPath = ./facter.json;}

    inputs.lanzaboote.nixosModules.lanzaboote
  ];

  fonts = {
    enableDefaultPackages = false;
    packages = with pkgs; [
      ibm-plex
      nerd-fonts.iosevka
    ];
  };

  networking.firewall.allowedUDPPorts = [445];
  users.users.collin.packages = [pkgs.cifs-utils];

  system.stateVersion = "25.05";
}