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

30 lines
632 B
Nix
Raw Normal View History

2023-04-10 12:57:41 +00:00
{ pkgs, ... }:
let
catppuccin-mako = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "mako";
rev = "64ef71633528b50e5475755e50071584b54fa291";
sha256 = "007zr906q7s31xgn9xw3jl8zdg5wapixva01qniclna1y0yxlqr7";
};
in {
programs.eww = {
enable = true;
package = pkgs.eww-wayland;
configDir = ./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";
};
wayland.windowManager.hyprland = {
2023-04-08 13:53:58 +00:00
enable = true;
recommendedEnvironment = true;
extraConfig = builtins.readFile ./hyprland.conf;
2023-04-08 13:53:58 +00:00
};
2023-04-08 13:53:58 +00:00
}