fix: add xdg-utils globally

This commit is contained in:
winston 2023-06-29 23:48:11 +02:00
parent bf5c3febb5
commit 8745f1b940
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ {pkgs, ...}: {
imports = [ imports = [
./boot.nix ./boot.nix
./greeter.nix ./greeter.nix
@ -36,6 +36,7 @@
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
programs.zsh.enable = true; programs.zsh.enable = true;
environment.systemPackages = [pkgs.xdg-utils];
system.stateVersion = "22.11"; system.stateVersion = "22.11";
} }

View file

@ -24,7 +24,7 @@ in {
GTK = { GTK = {
font_name = "IBM Plex Mono 16"; font_name = "IBM Plex Mono 16";
cursor_theme_name = "Numix-Cursor"; cursor_theme_name = "Numix-Cursor";
icon_theme_name = "Papirus"; icon_theme_name = "Papirus-Dark";
theme_name = "Catppuccin-Mocha-Compact-Pink-Dark"; theme_name = "Catppuccin-Mocha-Compact-Pink-Dark";
}; };
}; };