nixcfg/home/hypr/default.nix

83 lines
2 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
hyprland-protocols
hyprlock
hyprnome
hyprpaper
hyprshade
hyprshot
playerctl
pyprland
udiskie
xdg-desktop-portal-hyprland
];
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;
2024-03-25 23:57:27 -04:00
xdg.configFile."hypr/hyprlock.conf".source = ./hyprlock.conf;
xdg.configFile."hypr/hyprpaper.conf".source = ./hyprpaper.conf;
2024-03-26 13:01:59 -04:00
xdg.configFile."hypr/wallpapers/tokyoGreen.jpg".source =
./wallpapers/tokyoGreen.jpg;
xdg.configFile."hypr/wallpapers/greenCity.jpg".source =
./wallpapers/greenCity.jpg;
xdg.configFile."hypr/wallpapers/jr-korpa-9XngoIpxcEo-unsplash.jpg".source =
./wallpapers/jr-korpa-9XngoIpxcEo-unsplash.jpg;
2024-03-25 23:57:27 -04:00
xdg.configFile."hypr/shaders/blue-light-filter.glsl".source =
./blue-light-filter.glsl;
xdg.configFile."hypr/hyprshade.toml".source = ./hyprshade.toml;
2024-03-25 23:57:27 -04:00
xdg.configFile."hypr/pyprland.toml".source = ./pyprland.toml;
home.pointerCursor = {
gtk.enable = true;
# x11.enable = true;
package = pkgs.catppuccin-cursors.frappeDark;
name = "Catppuccin-Frappe-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";
style.name = "Catppuccin-Frappe-Compact-Mauve-Dark";
2024-03-24 21:09:49 -04:00
};
gtk = {
enable = true;
theme = {
package = pkgs.catppuccin-gtk.override {
accents = [ "mauve" ];
size = "compact";
variant = "frappe";
tweaks = [ "normal" ];
};
name = "Catppuccin-Frappe-Compact-Mauve-Dark";
};
iconTheme = {
package = pkgs.catppuccin-papirus-folders.override {
flavor = "frappe";
accent = "mauve";
};
name = "Papirus-Dark";
};
font = {
name = "NotoSans Nerd Font Regular";
size = 11;
};
};
2024-03-24 10:59:08 -04:00
}