nix-dotfiles/hosts/kasei/home/default.nix

12 lines
214 B
Nix
Raw Normal View History

2024-06-30 14:39:36 +02:00
{ config, ... }:
{
2024-06-30 15:19:20 +02:00
home.stateVersion = "24.05";
2024-06-30 14:39:36 +02:00
programs.git.extraConfig.maintenance.repo = let
home = config.home.homeDirectory;
in [
"${home}/nix"
"${home}/nixpkgs"
"${home}/pvv/nix"
];
}