13 lines
213 B
Nix
13 lines
213 B
Nix
{
|
|
flake.nixosModules.base = {
|
|
programs.fish = {
|
|
enable = true;
|
|
vendor = {
|
|
completions.enable = true;
|
|
config.enable = true;
|
|
functions.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|