refactor: extract shell setup

This commit is contained in:
Michael Mandl 2024-07-10 13:21:28 +02:00
parent f6f01771ab
commit c2afb2c5d1
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
18 changed files with 33 additions and 58 deletions

View file

@ -7,17 +7,13 @@
home.stateVersion = "24.05"; # Please read the comment before changing.
home.packages = with pkgs; [
jq
htop
pavucontrol
gnumake
unzip
gcc
thunderbird
keepassxc
light
element-desktop
difftastic
darktable
kubectl
kubectx
@ -27,50 +23,16 @@
gthumb
gimp
evince
screen
inkscape
chromium
xclip
];
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. These will be explicitly sourced when using a
# shell provided by Home Manager. If you don't want to manage your shell
# through Home Manager then you have to manually source 'hm-session-vars.sh'
# located at either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/mandlm/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = { };
programs.home-manager.enable = true;
imports = [
./bat.nix
./carapace.nix
./direnv.nix
./eza.nix
./firefox.nix
./fzf.nix
./git.nix
./gpg
./kitty.nix
./neovim
./nextcloud.nix
./ripgrep.nix
./shell_aliases.nix
./starship.nix
./sway
./tree.nix
./zoxide.nix
./zsh.nix
];
}