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

11 lines
195 B
Nix

{ ... }:
{
home-manager.users.root = {
home.stateVersion = "24.05";
programs.zsh = {
oh-my-zsh.theme = "kardan";
shellAliases.nos = "nixos-operations-script";
};
};
}