nix/modules/programs/default.nix

9 lines
135 B
Nix
Raw Normal View History

2024-10-04 22:32:42 +02:00
{inputs, ...}: {
home-manager = {
extraSpecialArgs = {inherit inputs;};
users = {
"joy" = import ./home;
};
};
2024-08-31 16:04:57 +02:00
}