14 lines
198 B
Nix
14 lines
198 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "root";
|
|
home.homeDirectory = "/root";
|
|
|
|
imports = [
|
|
./tools.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
home.stateVersion = "26.05";
|
|
}
|