Split home config off
This commit is contained in:
parent
e1436242fe
commit
d86a989bbd
9 changed files with 90 additions and 61 deletions
27
suites/desktop/home.nix
Normal file
27
suites/desktop/home.nix
Normal 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"];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue