From 32a7e59b93a9c3748cd6aeca3d4fc9dadf8e0f59 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Sun, 11 Jan 2026 08:03:58 -0600 Subject: move various configs into modules where they belong --- hosts/mercury/nixos.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'hosts/mercury/nixos.nix') diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix index 558ae60..631a537 100644 --- a/hosts/mercury/nixos.nix +++ b/hosts/mercury/nixos.nix @@ -12,10 +12,11 @@ inputs.lanzaboote.nixosModules.lanzaboote ]; - systemd.services.systemd-udev-settle.enable = false; - networking.interfaces.wlp2s0.useDHCP = false; - - services.sshd.enable = true; + services.syncthing = { + enable = true; + user = "collin"; + dataDir = "/home/collin/.local/syncthing"; + }; facter.reportPath = ./facter.json; @@ -25,6 +26,4 @@ allowedUDPPorts = [445]; allowedTCPPorts = [8000]; }; - - system.stateVersion = "25.05"; } -- cgit v1.3.1 From b45860b940d7082f1df9cd23be4e5f277fc777f1 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Fri, 16 Jan 2026 17:38:42 -0600 Subject: enable printing on ganymede --- hosts/mercury/nixos.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'hosts/mercury/nixos.nix') diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix index 631a537..dcdd8c6 100644 --- a/hosts/mercury/nixos.nix +++ b/hosts/mercury/nixos.nix @@ -18,6 +18,8 @@ dataDir = "/home/collin/.local/syncthing"; }; + services.printing.enable = true; + facter.reportPath = ./facter.json; environment.defaultPackages = lib.mkForce []; # im not a noob -- cgit v1.3.1