services: move .nix files into their own dirs
This commit is contained in:
parent
7ccea14afb
commit
e0fb4b8903
8 changed files with 0 additions and 11 deletions
17
modules/services/mako/module.nix
Normal file
17
modules/services/mako/module.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{pkgs, ...}: let
|
||||
mako-wrapped = pkgs.symlinkJoin {
|
||||
name = "mako-wrapped";
|
||||
paths = [pkgs.mako];
|
||||
buildInputs = [pkgs.makeWrapper];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/mako --add-flags "\
|
||||
--font 'Lexend 11' \
|
||||
--border-radius 8 \
|
||||
--padding 8 \
|
||||
--border-size 5 \
|
||||
--default-timeout 4000"
|
||||
'';
|
||||
};
|
||||
in {
|
||||
environment.systemPackages = [mako-wrapped];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue