got it working even more

This commit is contained in:
martyTF 2025-12-18 13:30:28 +01:00
parent 7686df76ed
commit c2cda08d69
21 changed files with 469 additions and 222 deletions

View file

@ -9,6 +9,7 @@
imports = [
./kitty.nix
./ranger.nix
./fish.nix
];
}

22
modules/terminal/fish.nix Normal file
View file

@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}:
{
options = {
terminal = {
fish.enable = lib.mkEnableOption "enable fish";
};
};
config = lib.mkIf config.terminal.fish.enable {
programs = {
fish = {
enable = true;
};
};
};
}