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

View file

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

View file

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