feat(nix): add root in home-manager users to have similar environment
This commit is contained in:
parent
42602bd2a4
commit
cfdf06d19d
1 changed files with 26 additions and 13 deletions
|
@ -16,20 +16,33 @@
|
|||
programs.dconf.enable = true;
|
||||
#############################################################################
|
||||
|
||||
home-manager.users.matt = {
|
||||
# TODO: use hm for tmux
|
||||
home-manager.users = {
|
||||
|
||||
imports = [
|
||||
nur.hmModules.nur
|
||||
./dconf.nix
|
||||
./theme.nix
|
||||
./hyprland.nix
|
||||
./bashdots.nix
|
||||
./dotfiles.nix
|
||||
./packages.nix
|
||||
./nvim.nix
|
||||
./firefox/main.nix
|
||||
];
|
||||
root = {
|
||||
imports = [
|
||||
./bashdots.nix
|
||||
./nvim.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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue