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 + ]; }; }