Files
panoptes-nix/homeManagerModules/home.nix
John Lancaster 6bf90e6b24 reorg
2024-12-08 13:04:18 -06:00

24 lines
363 B
Nix

{
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";
}