From f3ca8b37d31457e20d4699c0e6bfdd03dd183ebf Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 6 Jan 2025 13:44:01 -0500 Subject: [PATCH] slowly going through bloated packages --- modules/software/programs.nix | 3 --- shell.nix | 8 +++++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/modules/software/programs.nix b/modules/software/programs.nix index 6bf2f85..54ae0b1 100644 --- a/modules/software/programs.nix +++ b/modules/software/programs.nix @@ -17,10 +17,7 @@ curl tmux pulseaudio - keyd unar - alejandra - nixos-generators restic ] else [] diff --git a/shell.nix b/shell.nix index 9f27b92..1c18422 100644 --- a/shell.nix +++ b/shell.nix @@ -1,6 +1,12 @@ {pkgs ? import {}, ...}: { default = pkgs.mkShell { NIX_CONFIG = "extra-experimental-features = nix-command flakes"; - nativeBuildInputs = with pkgs; [git neovim nix]; + nativeBuildInputs = with pkgs; [ + git + neovim + nix + alejandra + nixos-generators + ]; }; }