From 27a46e998c503fe70c4f3011b1b77e5a86d21ce7 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Tue, 9 Sep 2025 20:40:13 -0500 Subject: various "debloating" --- hosts/mercury/config.nix | 2 +- hosts/mercury/nixos.nix | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'hosts') diff --git a/hosts/mercury/config.nix b/hosts/mercury/config.nix index 4b5ac0d..a80a871 100644 --- a/hosts/mercury/config.nix +++ b/hosts/mercury/config.nix @@ -67,7 +67,7 @@ boot = { systemd-boot.enable = true; - plymouth.enable = true; + # plymouth.enable = true; secureBoot.enable = true; }; }; 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"; } -- cgit v1.3.1