home/make: Move to seprate module
This commit is contained in:
parent
0e9459c700
commit
5eba61ee1b
|
@ -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;
|
||||
|
|
14
home-manager/modules/mako.nix
Normal file
14
home-manager/modules/mako.nix
Normal 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
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue