refactor(nixos): move system config options to main nixos module

This commit is contained in:
Mohammad Rafiq 2025-06-16 19:17:47 +08:00
parent bf63f44875
commit 91c2790b62
No known key found for this signature in database
20 changed files with 124 additions and 149 deletions

View file

@ -22,7 +22,7 @@ in
capSysAdmin = true;
openFirewall = true;
settings = {
sunshine_name = config.system.hostname;
sunshine_name = config.hostname;
origin_web_ui_allowed = "wan";
};
applications = { };
@ -35,7 +35,7 @@ in
home-manager.sharedModules = singleton {
services.spotifyd.enable = true;
services.spotifyd.settings.global = {
device_name = "${config.system.hostname}";
device_name = "${config.hostname}";
device_type = "computer";
zeroconf_port = 5353;
};