mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
13 lines
232 B
Nix
13 lines
232 B
Nix
{inputs, ...}: {
|
|
home-manager = {
|
|
sharedModules = [
|
|
{
|
|
stylix.targets = {
|
|
fish.enable = false;
|
|
};
|
|
}
|
|
];
|
|
users.c = import ../../home;
|
|
extraSpecialArgs = {inherit inputs;};
|
|
};
|
|
}
|