nixcfg/home/hypr/default.nix

72 lines
1.7 KiB
Nix
Raw Normal View History

2024-03-24 10:59:08 -04:00
{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
brightnessctl
2024-03-24 21:22:36 -04:00
gnome.eog
hyprcursor
hypridle
hyprlock
hyprpaper
hyprshade
hyprshot
playerctl
udiskie
];
2024-03-24 10:59:08 -04:00
wayland.windowManager.hyprland = {
enable = true;
extraConfig = builtins.readFile ./hyprland.conf;
};
2024-03-24 10:59:08 -04:00
xdg.configFile."hypr/hypridle.conf".source = ./hypridle.conf;
xdg.configFile."hypr/hyprlock.conf".source = ./hyprlock.conf;
xdg.configFile."hypr/hyprpaper.conf".source = ./hyprpaper.conf;
xdg.configFile."hypr/tokyoGreen.jpg".source = ./tokyoGreen.jpg;
xdg.configFile."hypr/greenCity.jpg".source = ./greenCity.jpg;
xdg.configFile."hypr/shaders/blue-light-filter.glsl".source = ./blue-light-filter.glsl;
xdg.configFile."hypr/hyprshade.toml".source = ./hyprshade.toml;
home.pointerCursor = {
gtk.enable = true;
# x11.enable = true;
package = pkgs.catppuccin-cursors.latteDark;
name = "Catppuccin-Latte-Dark-Cursors";
size = 24;
};
2024-03-24 10:59:08 -04:00
2024-03-24 21:09:49 -04:00
qt = {
enable = true;
platformTheme = "gtk";
2024-03-25 14:57:47 -04:00
style.name = "Catppuccin-Latte-Compact-Green-Light";
2024-03-24 21:09:49 -04:00
};
gtk = {
enable = true;
theme = {
package = pkgs.catppuccin-gtk.override {
accents = [ "green" ];
size = "compact";
2024-03-25 14:57:47 -04:00
variant = "latte";
tweaks = [ "normal" ];
};
2024-03-25 14:57:47 -04:00
name = "Catppuccin-Latte-Compact-Green-Light";
};
iconTheme = {
package = pkgs.catppuccin-papirus-folders.override {
2024-03-25 14:57:47 -04:00
flavor = "latte";
accent = "green";
};
2024-03-25 14:57:47 -04:00
name = "Papirus-Light";
};
font = {
name = "Noto Sans Nerd Font Regular";
size = 11;
};
};
2024-03-24 10:59:08 -04:00
}