Compare commits
2 commits
0bda6db01c
...
5eba61ee1b
Author | SHA1 | Date | |
---|---|---|---|
5eba61ee1b | |||
0e9459c700 |
|
@ -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
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
|
@ -15,10 +15,17 @@
|
||||||
|
|
||||||
# Allow ssh between all my machines
|
# Allow ssh between all my machines
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
|
# Desktop NixOS
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOOQB+LpTMWkmrx/ve1gxfzCM3CAsWpYkQ5QBRH1Vqf8 fleaz@cray"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOOQB+LpTMWkmrx/ve1gxfzCM3CAsWpYkQ5QBRH1Vqf8 fleaz@cray"
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOufg1IAWXQBbUPTc3W3vORxFc94/MbbaYzpimqI+M/J fleaz@jimbo"
|
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKpdn6umACgFp2zucdvjHclYVZxUxWNZZvM7/h6HcJ+x fleaz@milhouse"
|
# Desktop WSL
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPgC76vTSe1t/FbsZvT785x1P/XLgiIuxr8QWxAucFoz fleaz@DESKTOP-M4KRLN1"
|
||||||
|
|
||||||
|
# Framework
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAO0UjGRIPO9zPwulEXVK8/pUIninT2H8gW2YlGlHwKH fleaz@smithers"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAO0UjGRIPO9zPwulEXVK8/pUIninT2H8gW2YlGlHwKH fleaz@smithers"
|
||||||
|
|
||||||
|
# Work Dell
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAQ7gJplIqFOyxJl7G86nmvmXfYegNYYpafHkbhdDPN9 felix@felix-xm2307"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue