aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 2ed7a4b98fad5af2cbb96bf41eeb590c732990db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  description = "Sync imperative git repositories with home manager";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
  };

  outputs = {
    self,
    nixpkgs,
    ...
  }: {
    hmModules.reposync = import ./hm-reposync.nix;
  };
}