modules: avoid circular dependencies

This commit is contained in:
Anthony Rodriguez 2025-02-18 13:19:22 +01:00
parent cefaa9a11a
commit a3a3aa8231
Signed by: nezia
SSH key fingerprint: SHA256:R/ue1eTzTHUoo77lJD/3fSUsyL4AwvcHImU5BAZai+8
2 changed files with 2 additions and 2 deletions

View file

@ -16,6 +16,6 @@ in {
};
};
hjem.users.${username}.environment.sessionVariables.FLAKE = "${config.hjem.users.${username}.directory}/.dotfiles";
hjem.users.${username}.environment.sessionVariables.FLAKE = "/home/${username}/.dotfiles";
};
}

View file

@ -40,7 +40,7 @@ in {
];
environment.sessionVariables = {
GTK2_RC_FILES = "${config.hjem.users.${username}.directory}/.gtkrc-2.0";
GTK2_RC_FILES = "/home/${username}/.gtkrc-2.0";
GTK_THEME = "${gtkSettings.gtk-theme-name}"; # force a GTK theme on libadwaita apps
};
};