13 lines
223 B
Nix
13 lines
223 B
Nix
{config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../shell/shell.nix
|
|
../neovim/neovim.nix
|
|
];
|
|
|
|
home.username = "root";
|
|
home.homeDirectory = "/root";
|
|
home.stateVersion = "26.05";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|