infrastructure/hosts/neodymium/home/wayland/default.nix

97 lines
2.1 KiB
Nix
Raw Normal View History

2023-04-10 12:57:41 +00:00
{ pkgs, ... }:
let
catppuccin-mako = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "mako";
2023-08-16 16:12:45 +00:00
rev = "9dd088aa5f4529a3dd4d9760415e340664cb86df";
sha256 = "097x9jrkzvml6ngnhxwkzzl1l2awwv73yli1mhmpw83c0n8xck4x";
2023-04-10 12:57:41 +00:00
};
in {
imports = [ ./hyprland ./eww ];
2023-04-10 12:57:41 +00:00
services.mako = {
enable = true;
2023-04-23 18:24:15 +00:00
defaultTimeout = 5000;
2023-04-10 12:57:41 +00:00
extraConfig = builtins.readFile "${catppuccin-mako}/src/mocha";
};
programs.fuzzel = {
enable = true;
settings = {
main = {
line-height = 15;
lines = 10;
layer = "overlay";
icon-theme = "Papirus-Dark";
};
colors = {
background = "1E1E2EEE";
text = "7F849CFF";
match = "89B4FAFF";
selection = "45475AFF";
selection-text = "CDD6F4FF";
selection-match = "89B4FAFF";
};
};
};
services.swayidle = {
enable = true;
systemdTarget = "hyprland-session.target";
events = [
{
event = "after-resume";
command = "${pkgs.hyprland}/bin/hyprctl dispatch dpms on";
}
{
event = "before-sleep";
command = "${pkgs.swaylock-effects}/bin/swaylock -f";
}
];
timeouts = [
{
timeout = 120;
command = "${pkgs.swaylock-effects}/bin/swaylock -f --grace 3";
}
{
timeout = 150;
command = "${pkgs.hyprland}/bin/hyprctl dispatch dpms off";
}
{
timeout = 300;
command = "${pkgs.systemd}/bin/systemctl suspend";
}
];
};
programs.swaylock = {
2023-04-08 13:53:58 +00:00
enable = true;
package = pkgs.swaylock-effects;
settings = {
image = "/home/laurent/Pictures/wallpapers/kai-oberhauser-unsplash.jpg";
clock = true;
timestr = "%T";
datestr = "%F";
indicator = true;
indicator-radius = 100;
indicator-thickness = 7;
effect-blur = "7x5";
effect-vignette = "0.5:0.5";
ring-color = "bb00cc";
key-hl-color = "880033";
line-color = "00000000";
inside-color = "00000088";
separator-color = "00000000";
text-color = "fffffff";
};
2023-04-08 13:53:58 +00:00
};
2023-04-08 13:53:58 +00:00
}