From 60bf7127d6097060f0556821fa5983afa3736da3 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Sat, 15 Apr 2023 03:19:30 +0300 Subject: [PATCH] add cassowary --- machines/AMD-Workstation/default.nix | 1 + profiles/applications/cassowary.nix | 15 +++++++++++++++ profiles/overlay.nix | 1 + 3 files changed, 17 insertions(+) create mode 100644 profiles/applications/cassowary.nix diff --git a/machines/AMD-Workstation/default.nix b/machines/AMD-Workstation/default.nix index 2dfae90..40a873b 100644 --- a/machines/AMD-Workstation/default.nix +++ b/machines/AMD-Workstation/default.nix @@ -6,6 +6,7 @@ # nixosProfiles.stable-diffusion nixosProfiles.a2ln-server + nixosProfiles.cassowary # nixosProfiles.sunshine ]; diff --git a/profiles/applications/cassowary.nix b/profiles/applications/cassowary.nix new file mode 100644 index 0000000..2bb7045 --- /dev/null +++ b/profiles/applications/cassowary.nix @@ -0,0 +1,15 @@ +{ config, pkgs, lib, ... }: { + home-manager.users.${config.mainuser} = { + home.packages = [ + pkgs.cassowary-py + ]; + + # xdg.configFile."casualrdh/config.json".text = toJson '' + # ''; + # xdg.desktopEntries + }; + + persist.state.homeDirectories = [ + ".config/casualrdh" + ]; +} \ No newline at end of file diff --git a/profiles/overlay.nix b/profiles/overlay.nix index a620fc0..3bc0295 100644 --- a/profiles/overlay.nix +++ b/profiles/overlay.nix @@ -50,6 +50,7 @@ with lib; { # For nix-direnv nixFlakes = final.nix; + cassowary-py = inputs.cassowary.packages.${system}.cassowary; inherit (prev.callPackage ./packages/ivpn/default.nix {}) ivpn ivpn-service; ivpn-ui = prev.callPackage ./packages/ivpn-ui/default.nix { };