aboutsummaryrefslogtreecommitdiff
path: root/hosts/phoenix/home.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-04 22:26:52 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:45 -0700
commit1f5c44989e3f4432045f6e4178238db42e0f765e (patch)
treec56b31155e1b6a1fb1cc6a652eef5b41aea45513 /hosts/phoenix/home.nix
parent3dd1a6d822248204f8b2a2ea147ebca533e21f62 (diff)
migration: remove obsolete laptop config
Diffstat (limited to 'hosts/phoenix/home.nix')
-rw-r--r--hosts/phoenix/home.nix92
1 files changed, 0 insertions, 92 deletions
diff --git a/hosts/phoenix/home.nix b/hosts/phoenix/home.nix
deleted file mode 100644
index 360933e..0000000
--- a/hosts/phoenix/home.nix
+++ /dev/null
@@ -1,92 +0,0 @@
-{ config, lib, pkgs, inputs, ...}:
-
-{
- imports = [
- inputs.impermanence.nixosModules.home-manager.impermanence
-
- ../../roles/home
- ];
-
- theme = import ../../theme.nix;
-
- home.persistence."/persist/home" = {
- allowOther = true;
-
- directories = [
- "Downloads"
- "Documents"
- "Pictures"
- "Videos"
- "Music"
- "Games"
- "Persist"
-
- "code"
-
- ".gnupg"
- ".ssh"
-
- ".local/bin"
- ".local/share/applications"
-
- ".mozilla"
-
- ".config/discord"
- ".config/Vencord"
- ".config/vesktop"
-
- ".config/Obsidian"
-
- ".config/cmus"
-
- ".config/fcitx"
- ".config/fcitx5"
-
- {
- directory = ".local/share/Steam";
- method = "symlink";
- }
-
- ".config/qBittorrent"
- ".local/share/qBittorrent"
- ".cache/qBittorrent"
-
- ".local/share/lutris"
- ".local/share/PrismLauncher"
- ];
- };
-
- home.roles = {
- dev = {
- enable = true;
- key = "46008DE7867DA084";
- };
-
- desktop.enable = true;
- };
-
- programs = {
- feh.enable = true;
- btop.enable = true;
- tmux.enable = true;
- };
-
- nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
- "discord"
- "obsidian"
- ];
-
- home.packages = with pkgs; [
- pfetch
-
- qbittorrent
- jellyfin-media-player
-
- gimp
-
- obsidian
- prismlauncher
- ];
-
- home.stateVersion = "23.11";
-}