Oliver Davies
3b890d9ee5
Create a NixOS-specific Home Manager configuration and a reusable shared configuration that can be imported and also used by other configurations, such as WSL2.
24 lines
528 B
Nix
24 lines
528 B
Nix
{ inputs, username }:
|
|
|
|
{ desktop }:
|
|
|
|
let
|
|
configuration = import ./configuration.nix;
|
|
hardware-configuration = import ./hardware-configuration.nix;
|
|
in
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
modules = [
|
|
inputs.home-manager.nixosModules.home-manager {
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs desktop username; };
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
users."${username}" = import ./home-manager.nix;
|
|
};
|
|
}
|
|
|
|
configuration
|
|
hardware-configuration
|
|
];
|
|
}
|