NH and herdr

This commit is contained in:
2026-07-04 14:15:22 +02:00
parent e9c9670de2
commit 1ad01c35da
3 changed files with 51 additions and 7 deletions
+5 -2
View File
@@ -7,9 +7,11 @@
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
herdr.url = "github:ogulcancelik/herdr";
};
outputs = {self, home-manager, nixpkgs, ...}: {
outputs = {self, home-manager, nixpkgs, herdr, ...}: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
@@ -21,6 +23,7 @@
useUserPackages = true;
users.ulve = import ./home.nix;
backupFileExtension = "backup";
extraSpecialArgs = { inherit herdr; };
};
}
];