Add hyprland home imports, set icons to delta icons

This commit is contained in:
Evie Litherland-Smith 2023-05-24 07:31:31 +01:00
parent c1dfa4de99
commit c106758702
4 changed files with 8 additions and 9 deletions

View file

@ -1,5 +1,5 @@
{pkgs, ...}: let
delta-icon-theme = pkgs.callPackage ./pkgs/delta-icon-theme {};
delta = pkgs.callPackage ./home/pkgs/delta-icon-theme {};
in {
imports = [./xserver.nix ./xrdp.nix];
services.xserver.desktopManager.plasma5.enable = true;
@ -10,9 +10,6 @@ in {
pkgs.libsForQt5.kwindowsystem
pkgs.libsForQt5.ktorrent
pkgs.libsForQt5.krdc
pkgs.libsForQt5.bismuth
pkgs.catppuccin-kde
pkgs.papirus-icon-theme
delta-icon-theme.delta-icon-theme
delta.delta-icon-theme
];
}

View file

@ -1,5 +1,5 @@
{pkgs, ...}: {
imports = [../personal.nix];
imports = [../personal.nix ../desktop/hyprland.nix];
home.username = "xenia";
home.homeDirectory = "/home/xenia";
home.stateVersion = "22.11";

View file

@ -2,7 +2,9 @@
pkgs,
config,
...
}: {
}: let
delta = pkgs.callPackage ./pkgs/delta-icon-theme {};
in {
gtk = {
enable = true;
cursorTheme = {
@ -10,8 +12,8 @@
name = "Catppuccin-Macchiato-Dark-Cursors";
};
iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus";
package = delta.delta-icon-theme;
name = "Delta";
};
theme = {
package = pkgs.catppuccin-gtk;