diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2026-03-26 10:17:29 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2026-03-26 10:17:29 -0600 |
| commit | 644d8f2fa8d3511c372655311ec7a18c598f4dba (patch) | |
| tree | 280b531fa73945a6576cd6125a7bb76ea52a317b | |
| parent | 9323d519dc0212cb2235449a028e56d870a3361f (diff) | |
- change networkmanager settings for work device
- messing with tftp
| -rw-r--r-- | machines/betsy/default.nix | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/machines/betsy/default.nix b/machines/betsy/default.nix index 5627b72..8bede1d 100644 --- a/machines/betsy/default.nix +++ b/machines/betsy/default.nix @@ -29,6 +29,8 @@ services.fwupd.enable = true; + # services.atftpd.enable = true; + nix.settings = { substituters = ["https://hyprland.cachix.org"]; trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="]; @@ -51,7 +53,12 @@ networking.hostName = "betsy"; # Define your hostname. # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + networking.networkmanager = { # Easiest to use and most distros use this by default. + enable = true; + settings = { + connectivity.enabled = false; + }; + }; # Set your time zone. time.timeZone = lib.mkDefault "US/Mountain"; @@ -109,6 +116,9 @@ firefox tree epsonscan2 + speedtest-cli + orca-slicer + # networkmanager ]; }; @@ -139,8 +149,8 @@ services.openssh.enable = true; # Open ports in the firewall. - # networking.firewall.allowedTCPPorts = [ ... ]; - # networking.firewall.allowedUDPPorts = [ ... ]; + # networking.firewall.allowedTCPPorts = [ 69 76 ]; + # networking.firewall.allowedUDPPorts = [ 69 76 ]; # Or disable the firewall altogether. # networking.firewall.enable = false; |
