Set up some packages

This commit is contained in:
outfoxxed 2023-06-20 23:47:58 -07:00
parent d6495fe305
commit 741eb1d5ce
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
6 changed files with 58 additions and 3 deletions

View file

@ -2,7 +2,11 @@
username = "admin";
homeDirectory = "/home/${username}";
in {
imports = [ inputs.home-manager.nixosModules.home-manager ];
imports = [
inputs.home-manager.nixosModules.home-manager
./general.nix
];
options.user = lib.mkOption {
type = with lib.types; attrsOf anything;
@ -53,8 +57,6 @@ in {
XCURSOR_SIZE = "24";
};
programs.hyprland.enable = true;
home-manager = {
extraSpecialArgs = {
inherit system inputs;
@ -76,6 +78,9 @@ in {
inherit username homeDirectory;
stateVersion = config.system.stateVersion;
};
# enable xdg dir management
xdg.enable = true;
};
};
}