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

13 lines
246 B
Nix

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