summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2026-03-28 00:38:51 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2026-03-28 00:38:51 -0600
commitcf31c63d296c728f5431bf8af0e7df80eb295bca (patch)
tree7441f65e3085ac0287b6d50b5008bca24d0e7571 /machines
parent3dc828a8ed3809ea373245696e44f23ad15cd958 (diff)
parentc0be2affd593a8e5c2abdf6ab2c56bdba3e46b14 (diff)
Merge branch 'master' of ssh://bosco:/srv/git/.flake
Diffstat (limited to 'machines')
-rw-r--r--machines/betsy/default.nix16
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;