dotfiles/homes/default.nix

19 lines
301 B
Nix
Raw Normal View History

2023-04-25 20:10:57 +00:00
{
inputs,
self,
config,
2023-04-25 20:10:57 +00:00
...
}: {
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
extraSpecialArgs = {
inherit inputs self;
2023-04-25 20:10:57 +00:00
};
users = {
floppydisk = ./floppydisk;
# more users can go here, the format is only for convenience
2023-04-25 20:10:57 +00:00
};
};
}