1
0
Fork 0
nix-configuration/modules/users/root/default.nix

11 lines
195 B
Nix
Raw Normal View History

2024-10-25 19:53:50 -04:00
{ ... }:
2024-05-16 20:08:57 -04:00
{
home-manager.users.root = {
home.stateVersion = "24.05";
2024-10-25 19:53:50 -04:00
programs.zsh = {
oh-my-zsh.theme = "kardan";
shellAliases.nos = "nixos-operations-script";
2024-05-16 20:08:57 -04:00
};
};
}