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