Add hyprland home imports, set icons to delta icons
This commit is contained in:
parent
c1dfa4de99
commit
c106758702
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue