10 lines
205 B
Nix
Raw Normal View History

2024-06-18 04:49:58 +03:00
{ pkgs, config, lib, ... }:
{
2022-01-29 00:41:41 +03:00
gtk.iconCache.enable = true;
2021-02-07 02:38:11 +03:00
programs.dconf.enable = true;
2022-01-29 00:41:41 +03:00
services.dbus.packages = with pkgs; [ dconf gcr ];
2024-06-18 04:49:58 +03:00
persist.state.homeDirectories = [ ".config/dconf" ];
2019-09-11 17:17:56 +04:00
}