purge home-manager
This commit is contained in:
parent
46f14be415
commit
3bc2bf3fc5
7 changed files with 19 additions and 342 deletions
17
modules/services/mako.nix
Normal file
17
modules/services/mako.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];
|
||||
}
|
|
@ -4,7 +4,7 @@ _: {
|
|||
./locate.nix
|
||||
./ssh.nix
|
||||
./greetd.nix
|
||||
./dunst.nix
|
||||
./mako.nix
|
||||
./mpd.nix
|
||||
./firewall.nix
|
||||
./kmscon.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue