Massive rewrite, further modularized

This commit is contained in:
Bryan Ramos 2024-01-28 09:16:53 -05:00
parent 98e2bfe511
commit d725ffdbfa
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
28 changed files with 139 additions and 53 deletions

View file

@ -6,22 +6,21 @@ let
in
{ options.modules.utils = { enable = mkEnableOption "utils"; };
imports = [ ./modules ];
config = mkIf cfg.enable {
modules = {
vim.enable = false;
email.enable = true;
irc.enable = true;
dev.enable = true;
};
home.packages = with pkgs; [
wget curl tree neofetch
unzip fping calc qrencode
fd pkg-config pciutils
mdbook rsync docker exercism pandoc
texlive.combined.scheme-tetex glibc
pdftk zoom-us zip teams-for-linux
aerc weechat asciidoctor
gcc
mdbook rsync pandoc texlive.combined.scheme-tetex
zip asciidoctor
];
home.file.".config/aerc" = {
source = ./aerc;
recursive = true;
};
};
}