mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-22 00:21:34 +01:00
12 lines
235 B
Nix
12 lines
235 B
Nix
{ inputs, pkgs, ... }:
|
|
(inputs.wrapper-manager.lib {
|
|
inherit pkgs;
|
|
modules = [
|
|
{
|
|
wrappers.bottom = {
|
|
basePackage = pkgs.bottom;
|
|
flags = [ "--group" ];
|
|
};
|
|
}
|
|
];
|
|
}).config.wrappers.bottom.wrapped
|