nixos-config/home-mandlm.nix

61 lines
1.0 KiB
Nix
Raw Normal View History

{ pkgs, user, ... }:
2022-06-18 17:48:25 +00:00
{
home = {
username = "${user}";
homeDirectory = "/home/${user}";
2023-12-11 06:39:18 +00:00
sessionPath = [
"$HOME/.cargo/bin/"
];
2022-06-18 18:16:46 +00:00
packages = with pkgs; [
2023-10-31 08:13:03 +00:00
unstable.eza
2022-06-20 06:16:24 +00:00
jq
2022-06-18 18:16:46 +00:00
htop
2022-06-20 06:38:03 +00:00
ripgrep
2022-06-20 09:44:49 +00:00
pavucontrol
2022-06-22 19:50:50 +00:00
gnumake
2022-06-20 13:49:53 +00:00
unzip
gcc
thunderbird
keepassxc
2022-06-22 19:50:50 +00:00
tree
2022-06-23 13:54:07 +00:00
light
2022-06-29 06:07:08 +00:00
element-desktop
difftastic
2022-10-17 18:14:35 +00:00
darktable
2022-11-27 12:04:05 +00:00
kubectl
kubectx
2023-06-22 06:26:47 +00:00
gnome.simple-scan
2023-10-18 07:20:55 +00:00
calibre
2023-11-05 14:04:55 +00:00
libreoffice
2023-12-11 06:39:28 +00:00
gthumb
2024-01-15 20:31:17 +00:00
gimp
2024-01-21 20:49:48 +00:00
joplin
2024-03-14 13:56:11 +00:00
unstable.joplin-desktop
evince
2022-06-22 19:50:50 +00:00
];
2022-06-20 13:49:53 +00:00
2022-06-18 17:48:25 +00:00
stateVersion = "22.05";
};
programs.home-manager.enable = true;
imports = [
./home-mandlm/nextcloud.nix
./home-mandlm/firefox.nix
./home-mandlm/fzf.nix
./home-mandlm/git.nix
./home-mandlm/kitty.nix
./home-mandlm/neovim
./home-mandlm/gpg
./home-mandlm/carapace.nix
./home-mandlm/zsh.nix
./home-mandlm/starship.nix
./home-mandlm/sway
./home-mandlm/direnv.nix
./home-mandlm/bat.nix
./home-mandlm/zoxide.nix
];
2022-06-18 17:48:25 +00:00
}