2024-03-13 11:11:16 +01:00
|
|
|
{ config, lib, pkgs, mods, ... }:
|
|
|
|
{
|
|
|
|
users.users.root.shell = pkgs.zsh;
|
|
|
|
home-manager.users.root = {
|
|
|
|
home.stateVersion = "23.11";
|
2024-03-17 11:31:42 +01:00
|
|
|
imports = with mods.home; [ neovim zsh ];
|
2024-03-13 11:11:16 +01:00
|
|
|
};
|
|
|
|
}
|