From 8745f1b9402307a0c71fd9b8374534b5dfe0f0b1 Mon Sep 17 00:00:00 2001 From: winston Date: Thu, 29 Jun 2023 23:48:11 +0200 Subject: [PATCH] fix: add xdg-utils globally --- machines/common/linux/default.nix | 3 ++- machines/common/linux/greeter.nix | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/machines/common/linux/default.nix b/machines/common/linux/default.nix index 9514f24..74a29e6 100644 --- a/machines/common/linux/default.nix +++ b/machines/common/linux/default.nix @@ -1,4 +1,4 @@ -{ +{pkgs, ...}: { imports = [ ./boot.nix ./greeter.nix @@ -36,6 +36,7 @@ programs.nix-ld.enable = true; programs.zsh.enable = true; + environment.systemPackages = [pkgs.xdg-utils]; system.stateVersion = "22.11"; } diff --git a/machines/common/linux/greeter.nix b/machines/common/linux/greeter.nix index 059fd62..4970863 100644 --- a/machines/common/linux/greeter.nix +++ b/machines/common/linux/greeter.nix @@ -24,7 +24,7 @@ in { GTK = { font_name = "IBM Plex Mono 16"; cursor_theme_name = "Numix-Cursor"; - icon_theme_name = "Papirus"; + icon_theme_name = "Papirus-Dark"; theme_name = "Catppuccin-Mocha-Compact-Pink-Dark"; }; };