Files

14 lines
198 B
Nix
Raw Permalink Normal View History

2026-07-11 14:56:13 -04:00
{ config, lib, pkgs, ... }:
{
home.username = "root";
home.homeDirectory = "/root";
2026-07-11 16:28:11 -04:00
imports = [
./tools.nix
];
2026-07-11 14:56:13 -04:00
2026-07-11 16:28:11 -04:00
programs.home-manager.enable = true;
home.stateVersion = "26.05";
2026-07-11 14:56:13 -04:00
}