home/make: Move to seprate module

This commit is contained in:
fleaz 2024-11-25 20:58:34 +01:00
parent 0e9459c700
commit 5eba61ee1b
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
2 changed files with 16 additions and 8 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ config, lib, ... }:
let
home-manager = (import ../nix/sources.nix).home-manager;
@ -27,6 +27,7 @@ in
modules/foot.nix
modules/manual.nix
modules/tig.nix
modules/mako.nix
../secrets/ssh-config.nix
] ++ lib.optionals (config.networking.hostName == "smithers") [
modules/kanshi.nix
@ -80,7 +81,6 @@ in
swayidle
brightnessctl
wl-clipboard
mako
sway-contrib.grimshot
albert
foot
@ -147,12 +147,6 @@ in
userEmail = "mail@felixbreidenstein.de";
};
services.mako = {
enable = true;
groupBy = "app-name";
defaultTimeout = 5000;
};
services.gammastep = {
enable = true;
tray = true;

View file

@ -0,0 +1,14 @@
{
services.mako = {
enable = true;
groupBy = "app-name";
defaultTimeout = 5000;
extraConfig = ''
font=Inconsolata 10
background-color=#1d2021
border-color=#ebdbb2
border-radius=10
text-color=#ebdbb2
'';
};
}