config-perso/users/root.nix
2024-03-17 11:31:42 +01:00

8 lines
189 B
Nix

{ config, lib, pkgs, mods, ... }:
{
users.users.root.shell = pkgs.zsh;
home-manager.users.root = {
home.stateVersion = "23.11";
imports = with mods.home; [ neovim zsh ];
};
}