From e46eba32a617428dba5cacbd1e4d9f7ce09b94c9 Mon Sep 17 00:00:00 2001 From: truxnell <19149206+truxnell@users.noreply.github.com> Date: Mon, 25 Mar 2024 22:55:12 +1100 Subject: [PATCH] chore: fix tpyo --- nixos/modules/nixos/programs/shell/fish.nix | 29 +++++++-------------- nixos/profiles/role-worstation.nix | 1 - 2 files changed, 9 insertions(+), 21 deletions(-) diff --git a/nixos/modules/nixos/programs/shell/fish.nix b/nixos/modules/nixos/programs/shell/fish.nix index de8316e..ac0acec 100644 --- a/nixos/modules/nixos/programs/shell/fish.nix +++ b/nixos/modules/nixos/programs/shell/fish.nix @@ -20,27 +20,16 @@ in }; - } + }; - # Install fish systemwide - config.programs.fish = mkIf cfg.enable { - enable = true; - vendor = { - completions.enable = true; - config.enable = true; - functions.enable = true; + # Install fish systemwide + config.programs.fish = mkIf cfg.enable { + enable = true; + vendor = { + completions.enable = true; + config.enable = true; + functions.enable = true; + }; }; -}; - -# Install fish plugins systemwide -config.mySystem.system.packages = with pkgs; mkIf cfg.enable [ -fishPlugins.done -fishPlugins.fzf-fish -fishPlugins.forgit -fishPlugins.hydro -fzf -fishPlugins.grc -grc -]; } diff --git a/nixos/profiles/role-worstation.nix b/nixos/profiles/role-worstation.nix index 0c4555a..12bb03d 100644 --- a/nixos/profiles/role-worstation.nix +++ b/nixos/profiles/role-worstation.nix @@ -6,7 +6,6 @@ with lib; { - config.mySystem.shell.fish.plugins = true; config.boot = { binfmt.emulatedSystems = [ "aarch64-linux" ]; # Enabled for raspi4 compilation