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,7 +16,19 @@
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 = [
nur.hmModules.nur
@ -32,4 +44,5 @@
home.stateVersion = "23.05";
};
};
}