nixos-configs/nixos/home/main.nix
2023-10-08 14:42:43 -04:00

34 lines
788 B
Nix

{ home-manager, nur, ... }:
{
## Global config to add home-manager module
#############################################################################
imports = [
home-manager.nixosModules.default
];
# Define a user account. Don't forget to set a password with 'passwd'.
users.users.matt = {
isNormalUser = true;
extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ];
};
programs.dconf.enable = true;
#############################################################################
home-manager.users.matt = {
imports = [
nur.hmModules.nur
./dconf.nix
./theme.nix
./hyprland.nix
./bashdots.nix
./dotfiles.nix
./packages.nix
./nvim.nix
];
home.stateVersion = "23.05";
};
}