refactor: improve formatting in Nextcloud and home config
Reformatted code blocks for better readability and consistency in Nextcloud and Darwin home configurations. No functional changes were made, ensuring existing behavior remains intact.
This commit is contained in:
parent
960d6f935e
commit
47cf44ccfd
|
@ -34,7 +34,8 @@ in
|
||||||
xdg.configFile = mkAliasDefinitions options.metacfg.home.configFile;
|
xdg.configFile = mkAliasDefinitions options.metacfg.home.configFile;
|
||||||
};
|
};
|
||||||
|
|
||||||
snowfallorg.users.${config.metacfg.user.name}.home.config = mkAliasDefinitions options.metacfg.home.extraOptions;
|
snowfallorg.users.${config.metacfg.user.name}.home.config =
|
||||||
|
mkAliasDefinitions options.metacfg.home.extraOptions;
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
systemd.services."nextcloud-setup".requires = [ "postgresql.service" ];
|
systemd.services."nextcloud-setup".requires = [ "postgresql.service" ];
|
||||||
systemd.services."nextcloud-setup".after = [ "postgresql.service" ];
|
systemd.services."nextcloud-setup".after = [ "postgresql.service" ];
|
||||||
|
|
Loading…
Reference in a new issue