15 lines
325 B
Nix
15 lines
325 B
Nix
{
|
|
inputs,
|
|
self,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
useUserPackages = true;
|
|
useGlobalPkgs = true;
|
|
extraSpecialArgs = {inherit inputs self;}; # let home-manager access inputs and self
|
|
users = {
|
|
jacek = import ./jacek;
|
|
chmura = import ./chmura;
|
|
};
|
|
};
|
|
}
|