nix-dots/common/default.nix
2025-05-16 18:17:32 -05:00

31 lines
472 B
Nix

{
pkgs,
lib,
...
}: let
inherit (lib) mkOption types;
in {
options.home.uid = mkOption {
type = with types; nullOr int;
default = null;
description = ''
The account UID. If the UID is null, a free UID is picked on
activation.
'';
};
config = {
programs.home-manager.enable = true;
home = {
packages = with pkgs; [
wget
curl
htop
doggo
jq
tree
];
};
};
}