Added impermanence to home manager

This commit is contained in:
2026-06-30 00:27:15 +02:00
parent f1c99682ac
commit a0f6f9052b
9 changed files with 93 additions and 111 deletions
+10 -1
View File
@@ -1,9 +1,18 @@
{ pkgs, inputs, ... }:
{
pkgs,
inputs,
primaryUser,
...
}:
{
imports = [
inputs.spicetify-nix.homeManagerModules.default
];
home.persistence."/persist/home/${primaryUser}".directories = [
".config/spotify"
];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};