1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Enable dconf for gtk themes to work correctly

This commit is contained in:
RGBCube 2023-11-02 14:33:49 +03:00
parent 2f47895100
commit 08008717e1
No known key found for this signature in database

View file

@ -1,6 +1,10 @@
{ pkgs, homeConfiguration, enabled, ... }:
{ lib, pkgs, systemConfiguration, homeConfiguration, enabled, ... }: lib.recursiveUpdate
homeConfiguration "nixos" {
(systemConfiguration {
programs.dconf = enabled {};
})
(homeConfiguration "nixos" {
gtk = enabled {
cursorTheme = {
package = pkgs.capitaine-cursors-themed;
@ -23,5 +27,5 @@ homeConfiguration "nixos" {
name = "Gruvbox-Dark-BL";
};
};
}
})