fucking(refactored): everything

This commit is contained in:
2025-10-16 01:25:34 +01:00
parent e25053b02d
commit 34730d793c
44 changed files with 344 additions and 161 deletions

View File

@@ -0,0 +1,4 @@
_: {
home = ./home.nix;
# nixos: ./nixos.nix;
}

View File

@@ -1,7 +1,15 @@
{ ... }:
{ config, lib, ... }:
let
cfg = config.modules.fish;
in
{
home.shell.enableFishIntegration = true;
programs.fish = {
# enable = true;
options.modules.fish = {
enable = lib.mkEnableOption "Fish";
};
config = lib.mkIf cfg.enable {
home.shell.enableFishIntegration = true;
programs.fish = {
# enable = true;
};
};
}