added: hyfetch

This commit is contained in:
2026-01-03 17:01:36 +00:00
parent 28e7c64262
commit 95178cab63
4 changed files with 65 additions and 0 deletions

20
modules/hyfetch/nixos.nix Normal file
View File

@@ -0,0 +1,20 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.modules.fish;
in
{
options.modules.fish = {
enable = lib.mkEnableOption "Fish";
};
config = lib.mkIf cfg.enable {
users.defaultUserShell = pkgs.fish;
programs.fish = {
enable = true;
};
};
}