Split home config off

This commit is contained in:
Fern Garden 2025-08-07 11:08:38 +08:00
parent e1436242fe
commit d86a989bbd
9 changed files with 90 additions and 61 deletions

27
suites/desktop/home.nix Normal file
View file

@ -0,0 +1,27 @@
{
imports = [../home.nix];
# Ghostty settings.
programs.ghostty = {
enable = true;
settings = {
font-family = "IosevkaCustom";
theme = "Kanagawa Dragon";
};
};
# Firefox settings
programs.firefox = {
enable = true;
profiles.default = {};
profiles.default.settings."identity.sync.tokenserver.uri" = "https://fxsync.fern.garden/1.0/sync/1.5";
};
# virt-manager - autoconnect to qemu.
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
};
};
}