Files
home-manager/tests/integration/standalone/dconf-home.nix
2026-04-13 22:02:40 -05:00

22 lines
366 B
Nix

{
home.username = "alice";
home.homeDirectory = "/home/alice";
home.stateVersion = "25.11"; # Please read the comment before changing.
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
dconf.settings = {
foo = {
bar = 42;
};
};
dconf.databases.custom = {
foo1 = {
bar1 = 42;
};
};
}