2024-07-10 06:17:30 +00:00
|
|
|
{ pkgs, user, ... }:
|
2024-07-08 18:58:26 +00:00
|
|
|
|
|
|
|
{
|
2024-07-10 06:17:30 +00:00
|
|
|
home.username = user;
|
|
|
|
home.homeDirectory = "/home/${user}";
|
2024-07-08 18:58:26 +00:00
|
|
|
|
|
|
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
|
|
|
|
2024-07-09 19:58:33 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
jq
|
|
|
|
htop
|
|
|
|
pavucontrol
|
|
|
|
gnumake
|
|
|
|
unzip
|
|
|
|
gcc
|
|
|
|
thunderbird
|
|
|
|
keepassxc
|
|
|
|
light
|
|
|
|
element-desktop
|
|
|
|
difftastic
|
|
|
|
darktable
|
|
|
|
kubectl
|
|
|
|
kubectx
|
|
|
|
simple-scan
|
|
|
|
calibre
|
|
|
|
libreoffice
|
|
|
|
gthumb
|
|
|
|
gimp
|
|
|
|
evince
|
|
|
|
screen
|
|
|
|
inkscape
|
|
|
|
chromium
|
|
|
|
xclip
|
2024-07-08 18:58:26 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# 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
|
|
|
|
#
|
2024-07-09 19:58:33 +00:00
|
|
|
home.sessionVariables = { };
|
2024-07-08 18:58:26 +00:00
|
|
|
|
|
|
|
programs.home-manager.enable = true;
|
2024-07-09 19:58:33 +00:00
|
|
|
|
|
|
|
imports = [
|
2024-07-10 06:28:44 +00:00
|
|
|
../bat.nix
|
|
|
|
../carapace.nix
|
|
|
|
../direnv.nix
|
|
|
|
../eza.nix
|
2024-07-10 10:49:11 +00:00
|
|
|
../firefox.nix
|
2024-07-10 06:28:44 +00:00
|
|
|
../fzf.nix
|
2024-07-10 10:49:11 +00:00
|
|
|
../git.nix
|
2024-07-10 10:58:04 +00:00
|
|
|
../gpg
|
2024-07-10 10:49:11 +00:00
|
|
|
../kitty.nix
|
2024-07-10 10:52:58 +00:00
|
|
|
../neovim
|
2024-07-10 10:49:11 +00:00
|
|
|
../nextcloud.nix
|
2024-07-10 06:28:44 +00:00
|
|
|
../ripgrep.nix
|
2024-07-10 10:42:59 +00:00
|
|
|
../shell_aliases.nix
|
2024-07-10 10:49:11 +00:00
|
|
|
../starship.nix
|
|
|
|
../sway
|
2024-07-10 10:41:47 +00:00
|
|
|
../tree.nix
|
2024-07-10 10:49:11 +00:00
|
|
|
../zoxide.nix
|
2024-07-09 19:58:33 +00:00
|
|
|
./zsh.nix
|
|
|
|
];
|
2024-07-08 18:58:26 +00:00
|
|
|
}
|