niksos/homes/default.nix

16 lines
325 B
Nix
Raw Normal View History

{
2023-07-13 12:49:20 +02:00
inputs,
self,
...
}: {
2023-07-13 12:49:20 +02:00
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
extraSpecialArgs = {inherit inputs self;}; # let home-manager access inputs and self
users = {
jacek = import ./jacek;
2023-07-13 15:11:17 +02:00
chmura = import ./chmura;
2023-07-13 12:49:20 +02:00
};
};
}