blob: dcdd8c68fea368db7b54b574a2d988f4771f66b1 (
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
|
{
lib,
inputs,
...
}: {
imports = [
./disks.nix
./battery.nix
./ai.nix
inputs.nixos-facter-modules.nixosModules.facter
inputs.lanzaboote.nixosModules.lanzaboote
];
services.syncthing = {
enable = true;
user = "collin";
dataDir = "/home/collin/.local/syncthing";
};
services.printing.enable = true;
facter.reportPath = ./facter.json;
environment.defaultPackages = lib.mkForce []; # im not a noob
networking.firewall = {
allowedUDPPorts = [445];
allowedTCPPorts = [8000];
};
}
|