nix-config/home/_mixins/desktop/dconf-editor.nix
Greg Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

13 lines
199 B
Nix

{ lib, pkgs, ... }:
with lib.hm.gvariant;
{
home.packages = with pkgs; [
gnome.dconf-editor
];
dconf.settings = {
"ca/desrt/dconf-editor" = {
show-warning = false;
};
};
}