mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
11 lines
177 B
Nix
11 lines
177 B
Nix
{ assembleWrapper, moduleArgs, ... }:
|
|
let
|
|
inherit (moduleArgs) pkgs;
|
|
in
|
|
assembleWrapper {
|
|
basePackage = pkgs.hyprlock;
|
|
flags = [
|
|
"--config"
|
|
./hyprlock.conf
|
|
];
|
|
}
|