From bde96cb95fb18a4f30ff783921955e68c53c4228 Mon Sep 17 00:00:00 2001 From: Mat Jones Date: Sun, 11 Aug 2024 18:28:39 -0400 Subject: [PATCH] feat(nixos): Add flatpak cli --- home-manager/home.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 71f90315..138ef571 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -27,13 +27,7 @@ in { # release notes. stateVersion = "22.11"; packages = with pkgs; - [ - obsidian # re-enable when the nixpkgs package is fixed - mdbook - spotify - gnumake - yazi - ] ++ lib.lists.optionals isDarwin [ + [ mdbook spotify gnumake yazi ] ++ lib.lists.optionals isDarwin [ # put macOS specific packages here # xcodes ] ++ lib.lists.optionals isLinux [ @@ -59,6 +53,9 @@ in { vlc # cura r2modman + obsidian + flatpak + ]; file."${config.home.homeDirectory}/.xprofile".text = '' export XDG_DATA_DIRS="$XDG_DATA_DIRS:/home/mat/.nix-profile/share"