2023-10-20 23:41:27 +00:00
|
|
|
{pkgs, ...}: {
|
|
|
|
home = {
|
|
|
|
username = "tacocat";
|
|
|
|
homeDirectory = "/home/tacocat";
|
|
|
|
stateVersion = "23.11";
|
|
|
|
sessionVariables = {
|
|
|
|
EDITOR = "hx";
|
|
|
|
BAT_THEME = "ansi";
|
|
|
|
DOTNET_ROOT = "$HOME/.dotnet";
|
|
|
|
};
|
|
|
|
sessionPath = [
|
|
|
|
"$HOME/.local/bin"
|
|
|
|
"$HOME/.dotnet"
|
|
|
|
];
|
|
|
|
packages = with pkgs; [
|
2023-11-13 18:37:16 +00:00
|
|
|
rnote
|
2023-11-22 04:23:41 +00:00
|
|
|
sops
|
2023-11-23 03:18:21 +00:00
|
|
|
neovim
|
2023-11-16 22:25:00 +00:00
|
|
|
libreoffice
|
2023-11-22 03:30:31 +00:00
|
|
|
notify-desktop
|
2023-11-13 18:37:16 +00:00
|
|
|
texlive.combined.scheme-medium
|
|
|
|
libsixel
|
|
|
|
aspell
|
|
|
|
aspellDicts.en
|
|
|
|
qalculate-qt
|
|
|
|
fzf
|
|
|
|
zathura
|
|
|
|
pyocd
|
|
|
|
screen
|
2023-11-14 04:51:19 +00:00
|
|
|
wineWowPackages.stable
|
2023-10-20 23:41:27 +00:00
|
|
|
comic-mono
|
|
|
|
maple-mono
|
2023-10-29 03:17:57 +00:00
|
|
|
jetbrains-mono
|
2023-11-01 04:06:04 +00:00
|
|
|
fira-code
|
|
|
|
mononoki
|
2023-11-22 03:30:31 +00:00
|
|
|
inter
|
2023-11-05 02:44:54 +00:00
|
|
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
2023-10-29 06:45:13 +00:00
|
|
|
gnupg
|
2023-10-20 23:41:27 +00:00
|
|
|
pandoc
|
|
|
|
jdk20
|
2023-11-14 04:51:19 +00:00
|
|
|
maven
|
2023-10-20 23:41:27 +00:00
|
|
|
pdftk
|
2023-10-23 01:05:47 +00:00
|
|
|
git
|
2023-11-01 04:06:04 +00:00
|
|
|
lua
|
|
|
|
pamixer
|
|
|
|
networkmanagerapplet
|
|
|
|
htop
|
|
|
|
p7zip
|
2023-11-07 02:43:16 +00:00
|
|
|
cachix
|
2023-11-12 06:22:05 +00:00
|
|
|
aria
|
2023-10-20 23:41:27 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-11-20 05:50:18 +00:00
|
|
|
programs.nix-index.enable = true;
|
|
|
|
|
2023-10-20 23:41:27 +00:00
|
|
|
fonts.fontconfig.enable = true;
|
|
|
|
|
2023-10-29 03:17:57 +00:00
|
|
|
news.display = "silent";
|
2023-10-21 00:49:53 +00:00
|
|
|
|
|
|
|
imports = [
|
|
|
|
./programs
|
2023-10-29 06:45:13 +00:00
|
|
|
./services
|
2023-10-21 00:49:53 +00:00
|
|
|
./shell
|
|
|
|
./helix
|
|
|
|
./emacs
|
2023-10-30 01:48:09 +00:00
|
|
|
./wayland
|
2023-10-21 00:49:53 +00:00
|
|
|
];
|
2023-10-23 01:05:47 +00:00
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
2023-10-20 23:41:27 +00:00
|
|
|
}
|