diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 20:11:54 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:53 -0700 |
| commit | 1eb21c10c217c60e226d168875def24967570a19 (patch) | |
| tree | 75d41077853ae8be5b94f335b00ec4a662a8aaa9 /hosts/c-pc/home.nix | |
| parent | 3b8a3a4a10a5e85317d37693b74e220a0b99503d (diff) | |
migration: housekeeping
Diffstat (limited to 'hosts/c-pc/home.nix')
| -rw-r--r-- | hosts/c-pc/home.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix deleted file mode 100644 index 7fc00d6..0000000 --- a/hosts/c-pc/home.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ config, lib, pkgs, inputs, ...}: - -{ - imports = [ - inputs.impermanence.nixosModules.home-manager.impermanence - - ../../roles/home - ]; - - # theme.nix is an untracked symlink to a theme under ./themes/ - # This lets me switch out my theme without making changes in git - theme = import ../../theme.nix; - - home.persistence."/persist/home" = { - allowOther = true; - - directories = [ - ".config/jellyfin" - ".local/share/jellyfin" - ".cache/jellyfin" - ]; - }; - - home.packages = with pkgs; [ - mkvtoolnix - ]; - - home.stateVersion = "23.11"; -} |