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,7 +16,19 @@
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
home-manager.users.matt = {
|
# TODO: use hm for tmux
|
||||||
|
home-manager.users = {
|
||||||
|
|
||||||
|
root = {
|
||||||
|
imports = [
|
||||||
|
./bashdots.nix
|
||||||
|
./nvim.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
home.stateVersion = "23.05";
|
||||||
|
};
|
||||||
|
|
||||||
|
matt = {
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
nur.hmModules.nur
|
nur.hmModules.nur
|
||||||
|
@ -32,4 +44,5 @@
|
||||||
|
|
||||||
home.stateVersion = "23.05";
|
home.stateVersion = "23.05";
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue