From ff5693263b9aff6e328b6bbe7fff63112d3f42b4 Mon Sep 17 00:00:00 2001 From: chase Date: Tue, 3 Jun 2025 04:46:33 -0400 Subject: [PATCH] Thinning --- configuration.nix | 1 + home/home.nix | 40 +--------------------------------------- 2 files changed, 2 insertions(+), 39 deletions(-) diff --git a/configuration.nix b/configuration.nix index 3ae3c9e..7c2662e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -246,6 +246,7 @@ services.openssh = { enable = true; settings = { + PermitRootLogin = false; PasswordAuthentication = false; KbdInteractiveAuthentication = false; }; diff --git a/home/home.nix b/home/home.nix index 8784ee5..028094f 100644 --- a/home/home.nix +++ b/home/home.nix @@ -43,18 +43,6 @@ flavor = "mocha"; }; - programs.alacritty = { - enable = true; - settings = { - font = { - normal = { - family = "IBM Plex Mono"; - style = "Regular"; - }; - }; - }; - }; - programs.bash = { enable = true; enableCompletion = true; @@ -230,37 +218,11 @@ ]; }; - programs.ncmpcpp = { - enable = true; - bindings = [ - { key = "h"; command = "previous_column"; } - { key = "j"; command = "scroll_down"; } - { key = "k"; command = "scroll_up"; } - { key = "l"; command = "next_column"; } - ]; - settings = { - media_library_primary_tag = "album_artist"; - }; - }; - programs.obs-studio.enable = true; programs.ranger.enable = true; - programs.rmpc = { - enable = true; - config = '' - ( - album_art: ( - method: Auto, - max_size_px: (width: 1200, height: 1200), - disabled_protocols: ["http://", "https://"], - vertical_align: Center, - horizontal_align: Center, - ), - ) - ''; - }; + programs.rmpc.enable = true; programs.texlive.enable = true;