diff --git a/modules/home/shell/aliases.nix b/modules/home/shell/aliases.nix index 8fda9f6..3a4859b 100644 --- a/modules/home/shell/aliases.nix +++ b/modules/home/shell/aliases.nix @@ -9,6 +9,7 @@ home.packages = [ pkgs.eza pkgs.bat + pkgs.bottom ]; home.shellAliases = @@ -78,10 +79,15 @@ { cat = "bat --plain --theme=${theme}"; }; + + bottomAlias = { + btm = "btm --group"; + }; in lib.mkMerge [ lsAliases catAlias + bottomAlias ]; }; } diff --git a/users/seb/home.nix b/users/seb/home.nix index 3c741dd..5aa6306 100644 --- a/users/seb/home.nix +++ b/users/seb/home.nix @@ -17,17 +17,15 @@ pkgs.fastfetch pkgs.just + (wrappers.kitty { inherit (config.myConfig) theme; }) + wrappers.firefox pkgs.cinnamon.nemo-with-extensions pkgs.jetbrains.idea-community pkgs.celluloid - pkgs.onlyoffice-bin_latest pkgs.spotify pkgs.obsidian pkgs.webcord - - wrappers.bottom - (wrappers.kitty { inherit (config.myConfig) theme; }) - wrappers.firefox + pkgs.onlyoffice-bin_latest pkgs.corefonts pkgs.roboto diff --git a/wrappers/bottom.nix b/wrappers/bottom.nix deleted file mode 100644 index 491c99d..0000000 --- a/wrappers/bottom.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ inputs, pkgs, ... }: -(inputs.wrapper-manager.lib { - inherit pkgs; - modules = [ - { - wrappers.bottom = { - basePackage = pkgs.bottom; - flags = [ "--group" ]; - }; - } - ]; -}).config.wrappers.bottom.wrapped