aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury/nixos.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-19 15:22:53 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-19 15:22:53 -0600
commit7fc4bb05905697e6a43fa3805da45768ea9a9858 (patch)
tree8d2857bb18ea5808f254e663f6da654313ab94b1 /hosts/mercury/nixos.nix
parent5a5b183373c3732d96bb834b3ba0fcf2e88e590f (diff)
parentcdad26dfda64e94d19db576e93793ded9434bd09 (diff)
merge from main
Diffstat (limited to 'hosts/mercury/nixos.nix')
-rw-r--r--hosts/mercury/nixos.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix
index 05e84a7..48aa92c 100644
--- a/hosts/mercury/nixos.nix
+++ b/hosts/mercury/nixos.nix
@@ -1,6 +1,5 @@
{
lib,
- pkgs,
inputs,
...
}: {
@@ -10,16 +9,20 @@
./ai.nix
inputs.nixos-facter-modules.nixosModules.facter
- {facter.reportPath = ./facter.json;}
-
inputs.lanzaboote.nixosModules.lanzaboote
];
+ systemd.services.systemd-udev-settle.enable = false;
+ networking.interfaces.wlp2s0.useDHCP = false;
+
+ facter.reportPath = ./facter.json;
+
environment.defaultPackages = lib.mkForce []; # im not a noob
- networking.firewall.allowedUDPPorts = [445];
- networking.firewall.allowedTCPPorts = [8000];
- users.users.collin.packages = [pkgs.cifs-utils];
+ networking.firewall = {
+ allowedUDPPorts = [445];
+ allowedTCPPorts = [8000];
+ };
system.stateVersion = "25.05";
}