feat: add claude home-manager module

This commit is contained in:
2026-03-06 00:23:22 +01:00
parent d182532b34
commit 786748caeb
4 changed files with 40 additions and 16 deletions

View File

@@ -51,19 +51,7 @@
let
my-lib = import ./lib { inherit (nixpkgs) lib; };
overlays = [
(_: prev: {
inherit
(
(import inputs.nixpkgs-unstable {
inherit (prev.stdenv.hostPlatform) system;
config.allowUnfree = true;
})
)
claude-code
;
})
];
overlays = [ ];
mkHost = my-lib.mkHost {
inherit
@@ -99,6 +87,11 @@
inherit my-lib;
inherit (nixpkgs) lib;
} { };
homeManagerModules = import ./modules/home-manager {
inherit my-lib;
inherit (nixpkgs) lib;
} { };
}
// flake-utils.lib.eachDefaultSystem (
system: