2023-10-08 14:42:43 -04:00
|
|
|
{ home-manager, nur, ... }:
|
2023-09-29 23:46:34 -04:00
|
|
|
|
2023-06-15 17:03:09 -04:00
|
|
|
{
|
2023-06-24 04:59:54 -04:00
|
|
|
## Global config to add home-manager module
|
|
|
|
#############################################################################
|
2023-09-29 23:46:34 -04:00
|
|
|
imports = [
|
|
|
|
home-manager.nixosModules.default
|
|
|
|
];
|
2023-06-15 17:03:09 -04:00
|
|
|
|
2023-06-20 09:35:36 -04:00
|
|
|
# Define a user account. Don't forget to set a password with 'passwd'.
|
|
|
|
users.users.matt = {
|
|
|
|
isNormalUser = true;
|
2023-09-12 08:02:35 -04:00
|
|
|
extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ];
|
2023-06-20 09:35:36 -04:00
|
|
|
};
|
|
|
|
|
2023-06-15 17:03:09 -04:00
|
|
|
programs.dconf.enable = true;
|
2023-06-24 04:59:54 -04:00
|
|
|
#############################################################################
|
|
|
|
|
2023-10-11 01:01:40 -04:00
|
|
|
# TODO: use hm for tmux
|
|
|
|
home-manager.users = {
|
|
|
|
|
|
|
|
root = {
|
|
|
|
imports = [
|
|
|
|
./bashdots.nix
|
|
|
|
./nvim.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home.stateVersion = "23.05";
|
|
|
|
};
|
|
|
|
|
|
|
|
matt = {
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
nur.hmModules.nur
|
|
|
|
./dconf.nix
|
|
|
|
./theme.nix
|
|
|
|
./hyprland.nix
|
|
|
|
./bashdots.nix
|
|
|
|
./dotfiles.nix
|
|
|
|
./packages.nix
|
|
|
|
./nvim.nix
|
|
|
|
./firefox/main.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
home.stateVersion = "23.05";
|
|
|
|
};
|
2023-06-15 17:03:09 -04:00
|
|
|
};
|
|
|
|
}
|