mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
13 lines
199 B
Nix
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;
|
|
};
|
|
};
|
|
}
|