diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-11-30 16:35:17 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-11-30 16:35:17 -0600 |
| commit | cdad26dfda64e94d19db576e93793ded9434bd09 (patch) | |
| tree | 82bac4d4a68750b570ebbbb78c4d0749be96c6e1 /hosts/mercury/nixos.nix | |
| parent | 9882f579108d7c39589c7e96b428dced121bd31a (diff) | |
changes from a long time ago.
Diffstat (limited to 'hosts/mercury/nixos.nix')
| -rw-r--r-- | hosts/mercury/nixos.nix | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix index dfed04f..48aa92c 100644 --- a/hosts/mercury/nixos.nix +++ b/hosts/mercury/nixos.nix @@ -1,24 +1,28 @@ { lib, - pkgs, inputs, ... }: { imports = [ ./disks.nix ./battery.nix + ./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"; } |
