This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/home/modules/default.nix

37 lines
603 B
Nix
Raw Normal View History

2024-05-30 23:00:46 -05:00
{ lib, ... }: {
imports = [
./shell
2024-03-31 05:40:11 -05:00
./programs
./security
];
2024-03-30 23:02:26 -05:00
options.myHome.username = lib.mkOption {
type = lib.types.str;
description = "users username";
2024-05-10 10:06:16 -05:00
default = "jahanson";
2024-03-30 23:02:26 -05:00
};
options.myHome.homeDirectory = lib.mkOption {
type = lib.types.str;
2024-03-31 05:40:11 -05:00
description = "users homedir";
2024-05-10 10:06:16 -05:00
default = "jahanson";
2024-03-30 23:02:26 -05:00
};
# Home-manager defaults
config = {
2024-05-31 07:40:54 -05:00
home.stateVersion = "24.11";
programs = {
home-manager.enable = true;
git.enable = true;
};
xdg.enable = true;
nixpkgs.config = {
allowUnfree = true;
};
};
}