aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--srv/hadante/configuration.nix1
-rw-r--r--srv/hadante/mako.nix11
2 files changed, 12 insertions, 0 deletions
diff --git a/srv/hadante/configuration.nix b/srv/hadante/configuration.nix
index e2ed9aa..97b2d69 100644
--- a/srv/hadante/configuration.nix
+++ b/srv/hadante/configuration.nix
@@ -19,6 +19,7 @@ in
inputs.home-manager.nixosModules.home-manager
./agenix.nix
./waybar.nix
+ ./mako.nix
];
options = {
diff --git a/srv/hadante/mako.nix b/srv/hadante/mako.nix
new file mode 100644
index 0000000..bf4e0d9
--- /dev/null
+++ b/srv/hadante/mako.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, ... }:
+{
+ home-manager.users.${config.user} = {
+ services.mako.enable = true;
+ services.mako.settings = {
+ actions = true;
+ anchor = "top-right";
+ output = "DP-1";
+ };
+ };
+}