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
+14 -4
View File
@@ -8,13 +8,23 @@
import-tree.url = "github:vic/import-tree";
home-manager = {
url = "github:nix-community/home-manager/release-23.05";
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ flake-parts, nixos-hardware, import-tree, nixpkgs, ... }:
flake-parts.lib.mkFlake { inherit inputs; } (top@{ config, withSystem, moduleWithSystem, ... }: {
outputs = inputs@{
flake-parts,
nixos-hardware,
import-tree,
home-manager,
nixpkgs,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.home-manager.flakeModules.home-manager
];
flake = {
nixosConfigurations.qmoran-laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
@@ -36,7 +46,7 @@
systems = [
"x86_64-linux"
];
});
};
}