feat(nix): add root in home-manager users to have similar environment

This commit is contained in:
matt1432 2023-10-11 01:01:40 -04:00
parent 42602bd2a4
commit cfdf06d19d

View file

@ -16,20 +16,33 @@
programs.dconf.enable = true; programs.dconf.enable = true;
############################################################################# #############################################################################
home-manager.users.matt = { # TODO: use hm for tmux
home-manager.users = {
imports = [ root = {
nur.hmModules.nur imports = [
./dconf.nix ./bashdots.nix
./theme.nix ./nvim.nix
./hyprland.nix ];
./bashdots.nix
./dotfiles.nix
./packages.nix
./nvim.nix
./firefox/main.nix
];
home.stateVersion = "23.05"; 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";
};
}; };
} }