From 1f5c44989e3f4432045f6e4178238db42e0f765e Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Tue, 4 Feb 2025 22:26:52 -0800 Subject: migration: remove obsolete laptop config --- hosts/phoenix/home.nix | 92 -------------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 hosts/phoenix/home.nix (limited to 'hosts/phoenix/home.nix') 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"; -} -- cgit v1.2.3