aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury/nixos.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-09 20:40:13 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-09 20:40:13 -0500
commit27a46e998c503fe70c4f3011b1b77e5a86d21ce7 (patch)
treec94b21e8c9c82f4dc2029d3b9ff12cf0e8fb53ec /hosts/mercury/nixos.nix
parent10c22ef344bc22ca62e916d30468e97e368ff99b (diff)
various "debloating"
Diffstat (limited to 'hosts/mercury/nixos.nix')
-rw-r--r--hosts/mercury/nixos.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/mercury/nixos.nix b/hosts/mercury/nixos.nix
index 5b1b113..9e59671 100644
--- a/hosts/mercury/nixos.nix
+++ b/hosts/mercury/nixos.nix
@@ -1,4 +1,5 @@
{
+ lib,
pkgs,
inputs,
...
@@ -16,16 +17,19 @@
fonts = {
enableDefaultPackages = false;
+ fontDir.enable = true;
packages = with pkgs; [
ibm-plex
nerd-fonts.iosevka
];
};
+ services.speechd.enable = lib.mkForce false; # idk, im not disabled
+ environment.defaultPackages = lib.mkForce []; # im not a noob
+
networking.firewall.allowedUDPPorts = [445];
networking.firewall.allowedTCPPorts = [8000];
users.users.collin.packages = [pkgs.cifs-utils];
- fonts.fontDir.enable = true;
system.stateVersion = "25.05";
}