Wrap bottom

This commit is contained in:
SebastianStork 2024-05-08 17:51:52 +02:00
parent 0af906f7fb
commit 84335ca042
2 changed files with 10 additions and 1 deletions

View file

@ -27,7 +27,6 @@
}; };
home.packages = [ home.packages = [
pkgs.bottom
pkgs.fastfetch pkgs.fastfetch
pkgs.notepadqq pkgs.notepadqq
@ -46,5 +45,6 @@
myWrappers.obsidian myWrappers.obsidian
myWrappers.marktext myWrappers.marktext
(myWrappers.kitty {inherit (config.myConfig.de) theme;}) (myWrappers.kitty {inherit (config.myConfig.de) theme;})
myWrappers.bottom
]; ];
} }

9
wrappers/bottom.nix Normal file
View file

@ -0,0 +1,9 @@
{
assembleWrapper,
pkgs,
...
}:
assembleWrapper {
basePackage = pkgs.bottom;
flags = ["--group"];
}