25 lines
593 B
Nix
25 lines
593 B
Nix
{ inputs, pkgs, self, system, username }:
|
|
|
|
{ desktop ? false }:
|
|
|
|
let
|
|
configuration = import ./configuration.nix { inherit inputs pkgs system; };
|
|
hardware-configuration = import ./hardware-configuration.nix;
|
|
in
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
modules = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs desktop self username; };
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
users."${username}" = import ./home-manager;
|
|
};
|
|
}
|
|
|
|
configuration
|
|
hardware-configuration
|
|
];
|
|
}
|