2024-03-24 10:59:08 -04:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2024-03-24 11:41:16 -04:00
|
|
|
# Packages that should be installed to the user profile.
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
brightnessctl
|
2024-03-27 12:58:41 -04:00
|
|
|
evince
|
2024-03-24 11:41:16 -04:00
|
|
|
hyprcursor
|
|
|
|
hypridle
|
2024-03-26 22:30:07 -04:00
|
|
|
hyprland-protocols
|
2024-03-24 11:41:16 -04:00
|
|
|
hyprlock
|
2024-03-26 14:43:47 -04:00
|
|
|
hyprnome
|
2024-03-24 11:41:16 -04:00
|
|
|
hyprpaper
|
|
|
|
hyprshade
|
|
|
|
hyprshot
|
|
|
|
playerctl
|
2024-03-26 16:32:51 -04:00
|
|
|
pyprland
|
2024-03-26 22:30:07 -04:00
|
|
|
xdg-desktop-portal-hyprland
|
2024-03-27 12:31:20 -04:00
|
|
|
xfce.exo
|
2024-03-27 12:58:41 -04:00
|
|
|
xfce.ristretto
|
|
|
|
xfce.thunar
|
|
|
|
xfce.thunar-archive-plugin
|
|
|
|
xfce.thunar-media-tags-plugin
|
|
|
|
xfce.thunar-volman
|
|
|
|
xfce.tumbler
|
|
|
|
xfce.xfce4-settings
|
|
|
|
xfce.xfce4-taskmanager
|
|
|
|
xfce.xfconf
|
2024-03-24 11:41:16 -04:00
|
|
|
];
|
2024-03-24 10:59:08 -04:00
|
|
|
|
2024-03-27 12:58:41 -04:00
|
|
|
services.gpg-agent.enable = true;
|
|
|
|
|
2024-03-24 11:41:16 -04:00
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
|
|
};
|
2024-03-24 10:59:08 -04:00
|
|
|
|
2024-03-24 11:41:16 -04:00
|
|
|
xdg.configFile."hypr/hypridle.conf".source = ./hypridle.conf;
|
2024-03-25 23:57:27 -04:00
|
|
|
|
2024-03-24 11:41:16 -04:00
|
|
|
xdg.configFile."hypr/hyprlock.conf".source = ./hyprlock.conf;
|
2024-03-25 01:12:31 -04:00
|
|
|
|
2024-03-24 23:12:30 -04:00
|
|
|
xdg.configFile."hypr/hyprpaper.conf".source = ./hyprpaper.conf;
|
2024-03-27 20:03:14 -04:00
|
|
|
|
2024-03-26 13:01:59 -04:00
|
|
|
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-27 20:03:14 -04:00
|
|
|
xdg.configFile."hypr/wallpapers/salty-justice-NOMebOREvtc-unsplash.jpg".source =
|
|
|
|
./wallpapers/salty-justice-NOMebOREvtc-unsplash.jpg;
|
2024-03-24 11:41:16 -04:00
|
|
|
|
2024-03-25 23:57:27 -04:00
|
|
|
xdg.configFile."hypr/shaders/blue-light-filter.glsl".source =
|
|
|
|
./blue-light-filter.glsl;
|
2024-03-25 01:12:31 -04:00
|
|
|
xdg.configFile."hypr/hyprshade.toml".source = ./hyprshade.toml;
|
2024-03-25 23:57:27 -04:00
|
|
|
|
2024-03-26 16:32:51 -04:00
|
|
|
xdg.configFile."hypr/pyprland.toml".source = ./pyprland.toml;
|
|
|
|
|
2024-03-27 12:31:20 -04:00
|
|
|
xdg.configFile."xfce4/helpers.rc".source = ../xfce/helpers.rc;
|
|
|
|
|
2024-03-24 11:41:16 -04:00
|
|
|
home.pointerCursor = {
|
|
|
|
gtk.enable = true;
|
|
|
|
# x11.enable = true;
|
2024-03-25 22:32:57 -04:00
|
|
|
package = pkgs.catppuccin-cursors.frappeDark;
|
|
|
|
name = "Catppuccin-Frappe-Dark-Cursors";
|
2024-03-24 11:41:16 -04:00
|
|
|
size = 24;
|
|
|
|
};
|
2024-03-24 10:59:08 -04:00
|
|
|
|
2024-03-24 21:09:49 -04:00
|
|
|
qt = {
|
|
|
|
enable = true;
|
2024-03-25 13:59:26 -04:00
|
|
|
platformTheme = "gtk";
|
2024-03-25 22:32:57 -04:00
|
|
|
style.name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
2024-03-24 21:09:49 -04:00
|
|
|
};
|
|
|
|
|
2024-03-24 11:41:16 -04:00
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
theme = {
|
2024-03-25 13:59:26 -04:00
|
|
|
package = pkgs.catppuccin-gtk.override {
|
2024-03-25 22:32:57 -04:00
|
|
|
accents = [ "mauve" ];
|
2024-03-25 13:59:26 -04:00
|
|
|
size = "compact";
|
2024-03-25 22:32:57 -04:00
|
|
|
variant = "frappe";
|
2024-03-25 13:59:26 -04:00
|
|
|
tweaks = [ "normal" ];
|
|
|
|
};
|
2024-03-25 22:32:57 -04:00
|
|
|
name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
2024-03-24 11:41:16 -04:00
|
|
|
};
|
|
|
|
iconTheme = {
|
2024-03-25 13:59:26 -04:00
|
|
|
package = pkgs.catppuccin-papirus-folders.override {
|
2024-03-25 22:32:57 -04:00
|
|
|
flavor = "frappe";
|
|
|
|
accent = "mauve";
|
2024-03-25 13:59:26 -04:00
|
|
|
};
|
2024-03-25 22:32:57 -04:00
|
|
|
name = "Papirus-Dark";
|
2024-03-24 11:41:16 -04:00
|
|
|
};
|
|
|
|
font = {
|
2024-03-25 17:26:37 -04:00
|
|
|
name = "NotoSans Nerd Font Regular";
|
2024-03-24 11:41:16 -04:00
|
|
|
size = 11;
|
|
|
|
};
|
|
|
|
};
|
2024-03-24 10:59:08 -04:00
|
|
|
}
|