24 lines
363 B
Nix
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";
|
|
} |