mochi/nixos/home/modules/default.nix
Joseph Hanson 2b6d062d16
All checks were successful
Build / nix-build (native-x86_64, telperion) (push) Successful in 2m13s
Build / nix-build (native-x86_64, gandalf) (push) Successful in 3m23s
Build / nix-build (native-x86_64, shadowfax) (push) Successful in 4m38s
reformat
2024-12-27 21:30:25 -06:00

37 lines
601 B
Nix

{ lib, ... }:
{
imports = [
./shell
./programs
./security
];
options.myHome.username = lib.mkOption {
type = lib.types.str;
description = "users username";
default = "jahanson";
};
options.myHome.homeDirectory = lib.mkOption {
type = lib.types.str;
description = "users homedir";
default = "jahanson";
};
# Home-manager defaults
config = {
home.stateVersion = "24.05";
programs = {
home-manager.enable = true;
git.enable = true;
};
xdg.enable = true;
nixpkgs.config = {
allowUnfree = true;
};
};
}