mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
8 lines
148 B
Nix
8 lines
148 B
Nix
{ assembleWrapper, moduleArgs, ... }:
|
|
let
|
|
inherit (moduleArgs) pkgs;
|
|
in
|
|
assembleWrapper {
|
|
basePackage = pkgs.bottom;
|
|
flags = [ "--group" ];
|
|
}
|