nix-config/modules2/home-manager/nixos.nix
Oliver Davies 451a624b76 hosts: add PW05CH3L
Add a NixOS module for the PW05CH3L host, and start to separate `pc` and
`workstation` as a lot of `flake.modules.nixos.pc` isn't needed in WSL.

This probably won't be the final implementation, but it works for now.
2025-07-28 19:38:17 +01:00

38 lines
789 B
Nix

{
config,
inputs,
lib,
...
}:
{
flake.modules.nixos = {
workstation = {
imports = [ inputs.home-manager.nixosModules.home-manager ];
home-manager = {
extraSpecialArgs.hasGlobalPkgs = true;
useGlobalPkgs = true;
# https://github.com/nix-community/home-manager/issues/6770
# useUserPackages = true;
users.${config.flake.meta.owner.username}.imports = [
(
{ osConfig, ... }:
{
home.stateVersion = lib.mkForce osConfig.system.stateVersion;
}
)
config.flake.modules.homeManager.base
];
};
};
pc.home-manager.users.${config.flake.meta.owner.username}.imports = [
config.flake.modules.homeManager.gui
];
};
}