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";
};
};
}

View file

@ -44,5 +44,8 @@ in {
vim-multiple-cursors
];
};
home.sessionVariables = {
"EDITOR" = "neovim";
};
};
}

View file

@ -48,13 +48,8 @@
username = "fabian";
homeDirectory = "/home/fabian";
sessionVariables = {
"EDITOR" = "nvim";
"TERMINAL" = "kitty";
};
keyboard = {
layout = "us";
variant = "altgr-intl";
};
};
programs.home-manager.enable = true;
}