nixos-demo/users/root/home/default.nix

18 lines
279 B
Nix
Raw Normal View History

2025-07-12 00:28:21 +02:00
{ 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
];
}