81 lines
1.3 KiB
Nix
81 lines
1.3 KiB
Nix
{
|
|
pkgs,
|
|
username,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
home-manager.users.${username} = {
|
|
imports = [
|
|
../../home/firefox
|
|
../../home/fish
|
|
../../home/neovim
|
|
../../home/thunderbird
|
|
../../home/git
|
|
../../home/rofi
|
|
../../home/swaync
|
|
../../home/waybar
|
|
../../home/hyprlock
|
|
../../home/hyprpaper
|
|
../../home/themes/catppuccin.nix
|
|
../../home
|
|
];
|
|
|
|
programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
|
|
services.blueman-applet.enable = true;
|
|
|
|
home = {
|
|
stateVersion = config.system.stateVersion;
|
|
inherit username;
|
|
|
|
packages = with pkgs; [
|
|
keepassxc
|
|
kdeconnect
|
|
nextcloud-client
|
|
cliphist
|
|
digikam
|
|
fragments
|
|
element-desktop
|
|
libreoffice
|
|
loupe
|
|
gnome.seahorse
|
|
gimp
|
|
vlc
|
|
pavucontrol
|
|
thunderbird
|
|
keepassxc
|
|
gnome.nautilus
|
|
lollypop
|
|
protonmail-bridge-gui
|
|
varia
|
|
signal-desktop
|
|
calibre
|
|
alacritty
|
|
tagger
|
|
|
|
# proprietary
|
|
obsidian
|
|
|
|
# CLI tools
|
|
delta
|
|
fzf
|
|
jhead
|
|
fdupes
|
|
exiftool
|
|
sshfs
|
|
zip
|
|
unzip
|
|
lazygit
|
|
fd
|
|
ripgrep
|
|
wl-clipboard
|
|
|
|
custom.scripts.nixedit
|
|
];
|
|
};
|
|
};
|
|
}
|