home manager?

This commit is contained in:
2026-04-23 10:12:47 -04:00
parent 0122f2955c
commit 759811ab68
2 changed files with 17 additions and 8 deletions
Generated
+3 -4
View File
@@ -25,16 +25,15 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1716729631, "lastModified": 1776950293,
"narHash": "sha256-IerjU5GUeKc0eW9FPOdlPveSGJ2ZrO+lIfuHPUmUF2I=", "narHash": "sha256-t6KMARLILjPuTBSRoYanUxV+FU50IFZ7L5XVdOcdtaY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "fc4492181833eaaa7a26a8081c0615d95792d825", "rev": "6837e0d6c5eda81fd26308489799fbf83a160465",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-23.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
+14 -4
View File
@@ -8,13 +8,23 @@
import-tree.url = "github:vic/import-tree"; import-tree.url = "github:vic/import-tree";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-23.05"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };
outputs = inputs@{ flake-parts, nixos-hardware, import-tree, nixpkgs, ... }: outputs = inputs@{
flake-parts.lib.mkFlake { inherit inputs; } (top@{ config, withSystem, moduleWithSystem, ... }: { flake-parts,
nixos-hardware,
import-tree,
home-manager,
nixpkgs,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.home-manager.flakeModules.home-manager
];
flake = { flake = {
nixosConfigurations.qmoran-laptop = nixpkgs.lib.nixosSystem { nixosConfigurations.qmoran-laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@@ -36,7 +46,7 @@
systems = [ systems = [
"x86_64-linux" "x86_64-linux"
]; ];
}); };
} }