blob: 9e596716340c7fd42b2fd06c73fb2e8f1f8997ba (
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
|
{
lib,
pkgs,
inputs,
...
}: {
imports = [
./disks.nix
./battery.nix
./ai.nix
inputs.nixos-facter-modules.nixosModules.facter
{facter.reportPath = ./facter.json;}
inputs.lanzaboote.nixosModules.lanzaboote
];
fonts = {
enableDefaultPackages = false;
fontDir.enable = true;
packages = with pkgs; [
ibm-plex
nerd-fonts.iosevka
];
};
services.speechd.enable = lib.mkForce false; # idk, im not disabled
environment.defaultPackages = lib.mkForce []; # im not a noob
networking.firewall.allowedUDPPorts = [445];
networking.firewall.allowedTCPPorts = [8000];
users.users.collin.packages = [pkgs.cifs-utils];
system.stateVersion = "25.05";
}
|