modularize home

This commit is contained in:
alisceon 2026-03-10 18:54:37 +01:00
parent a04bb78c35
commit 9434b24685
29 changed files with 779 additions and 616 deletions

12
home/root/default.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, config, hostName, lib, ... }:
{
home.username = "root";
home.homeDirectory = "/root";
home.stateVersion = "24.05";
programs = {
git = {
enable = true;
extraConfig.safe.directory = "/home/alisceon/.nixos_config";
}; # end git
}; # end programs
} # end file