Files
nixos/home/default.nix
Joakim Repomaa 3a03103fc7 cleanup
2025-07-08 15:53:39 +03:00

19 lines
313 B
Nix

{
inputs,
pkgs-unstable,
self,
...
}:
{
home-manager = {
users = {
jokke = import ./jokke;
moco = import ./moco;
};
extraSpecialArgs = { inherit inputs self pkgs-unstable; };
sharedModules = [ (import ./common) ];
useUserPackages = true;
useGlobalPkgs = true;
};
}