18 lines
279 B
Nix
18 lines
279 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
programs.home-manager.enable = true;
|
|
|
|
home = {
|
|
username = "root";
|
|
homeDirectory = lib.mkForce "/root";
|
|
stateVersion = "25.05";
|
|
};
|
|
|
|
# https://nix-community.github.io/home-manager/options.xhtml
|
|
imports = [
|
|
./bash.nix
|
|
./git.nix
|
|
];
|
|
}
|