niksos/homes/default.nix

15 lines
359 B
Nix
Raw Normal View History

{
inputs,
self,
...
}: {
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
extraSpecialArgs = {inherit inputs self;}; # let home-manager access inputs and self
users = {
jacek = import ./jacek; # if more users to be added, create a directory for each one of them with a file called default.nix in them
};
};
}