12 lines
214 B
Nix
12 lines
214 B
Nix
{ config, ... }:
|
|
{
|
|
home.stateVersion = "24.05";
|
|
|
|
programs.git.extraConfig.maintenance.repo = let
|
|
home = config.home.homeDirectory;
|
|
in [
|
|
"${home}/nix"
|
|
"${home}/nixpkgs"
|
|
"${home}/pvv/nix"
|
|
];
|
|
} |