mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
22 lines
366 B
Nix
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;
|
|
};
|
|
};
|
|
}
|