Skip to content

Commit 6409712

Browse files
authored
Merge pull request #105 from shirakami-chigusa/hm-standalone-template
add a minimal example for standalone home-manager.
2 parents 5663ede + 8d868e0 commit 6409712

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
inputs = {
3+
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
4+
5+
blueprint = {
6+
url = "github:numtide/blueprint";
7+
inputs.nixpkgs.follows = "nixpkgs";
8+
};
9+
10+
home-manager = {
11+
url = "github:nix-community/home-manager";
12+
inputs.nixpkgs.follows = "nixpkgs";
13+
};
14+
};
15+
16+
outputs =
17+
inputs:
18+
inputs.blueprint {
19+
inherit inputs;
20+
};
21+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{ perSystem, ... }:
2+
{
3+
home.stateVersion = "24.11";
4+
5+
home.packages = [ perSystem.blueprint.docs ];
6+
}

0 commit comments

Comments
 (0)