nix_config/home/modules/baseline.nix

31 lines
406 B
Nix
Raw Normal View History

2024-11-21 00:52:37 +01:00
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.local.baseline;
in {
options.local.baseline = {
enable = mkEnableOption "Basic settings";
};
config = mkIf cfg.enable {
xdg.enable = true;
2024-11-21 07:38:11 +01:00
home.packages = with pkgs; [
calc
file
git
htop
killall
man-pages
man-pages-posix
tree
units
unzip
zip
];
2024-11-21 00:52:37 +01:00
};
}