8 lines
189 B
Nix
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 ];
|
|
};
|
|
}
|