This commit is contained in:
John Lancaster
2024-12-08 13:04:18 -06:00
parent 36cf352c67
commit 6bf90e6b24
5 changed files with 37 additions and 45 deletions

View File

@@ -0,0 +1,24 @@
{
inputs,
lib,
config,
pkgs,
...
}:
let
homePath = "/srv/panoptes";
in
{
imports = [ ./git.nix ];
programs.git.extraConfig.safe.directory = "${homePath}";
programs.home-manager.enable = true;
home = {
stateVersion = "24.05";
username = "${user}";
homeDirectory = "${homePath}";
};
systemd.user.startServices = "sd-switch";
}