improve baseline module

This commit is contained in:
Fabian Montero 2024-11-28 18:23:37 -06:00
parent bcd049b8c5
commit 995b085d82
3 changed files with 26 additions and 18 deletions

View file

@ -13,18 +13,28 @@ in {
config = mkIf cfg.enable {
xdg.enable = true;
home.packages = with pkgs; [
calc
file
git
htop
killall
man-pages
man-pages-posix
tree
units
unzip
zip
];
home = {
packages = with pkgs; [
calc
file
git
htop
killall
man-pages
man-pages-posix
tree
units
unzip
vim
zip
];
};
keyboard = {
layout = "us";
variant = "altgr-intl";
};
sessionVariables = {
"EDITOR" = mkDefault "vim";
};
};
}