mv mako to module
nix flake show / show-flake (push) Successful in 34s

This commit is contained in:
smayzy
2025-07-29 18:05:45 +02:00
parent f48152ff7a
commit 614a10248f
9 changed files with 51 additions and 11 deletions
+6
View File
@@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./mako.nix
];
}
+18
View File
@@ -0,0 +1,18 @@
{ lib, smayzy, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.mako.enable {
services.mako = {
enable = true;
settings = {
font="JetBrainsMono 10";
background-color="#282828";
text-color="#ebdbb2";
border-color="#98971a";
border-size=2;
};
};
};
}