We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5663ede + 8d868e0 commit 6409712Copy full SHA for 6409712
templates/home-manager-standalone/flake.nix
@@ -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
13
14
15
16
+ outputs =
17
+ inputs:
18
+ inputs.blueprint {
19
+ inherit inputs;
20
21
+}
templates/home-manager-standalone/hosts/myhost/users/me.nix
@@ -0,0 +1,6 @@
+{ perSystem, ... }:
+ home.stateVersion = "24.11";
+ home.packages = [ perSystem.blueprint.docs ];
0 commit comments