98069fa8d9
Remove per‑host imports across flake, modules, and profiles, exposing needed variables (system, printer settings, consoleKeyMap, etc.) as arguments. Drop unused printEnable flags from host variable files.
37 lines
606 B
Nix
37 lines
606 B
Nix
{
|
|
pkgs,
|
|
shell,
|
|
...
|
|
}: {
|
|
programs = {
|
|
fish = {
|
|
enable =
|
|
if shell == "fish"
|
|
then true
|
|
else false;
|
|
package = pkgs.fish;
|
|
generateCompletions = true;
|
|
interactiveShellInit = ''
|
|
set fish_greeting
|
|
# fastfetch
|
|
'';
|
|
};
|
|
|
|
nix-your-shell = {
|
|
enable = true;
|
|
package = pkgs.nix-your-shell;
|
|
enableFishIntegration = true;
|
|
nix-output-monitor = {
|
|
enable = true;
|
|
package = pkgs.nix-output-monitor;
|
|
};
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./aliases.nix
|
|
./functions.nix
|
|
./plugins.nix
|
|
];
|
|
}
|