nixfiles/hosts/artemis/home.nix

13 lines
232 B
Nix

{inputs, ...}: {
home-manager = {
sharedModules = [
{
stylix.targets = {
fish.enable = false;
};
}
];
users.c = import ../../home;
extraSpecialArgs = {inherit inputs;};
};
}