1
0
Fork 0

Fix kassandra calls

This commit is contained in:
Malte Brandy 2021-11-26 20:07:33 +01:00
parent 68a536006f
commit 6fd034af75
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
4 changed files with 4 additions and 4 deletions

View file

@ -58,7 +58,7 @@ let
let
all = extra ++ on-my-machines ++ [
(import ./roles/firefox.nix "http://localhost:8842")
(makeAutostart "kassandra")
(makeAutostart "kassandra2")
(makeAutostart "unlock-ssh")
./roles/beets.nix
./roles/daily-driver-programs.nix

View file

@ -18,5 +18,5 @@ let
in
{
home.packages = map superSimpleDesktopItem [ "kassandra" ] ++ map terminalDesktopItem [ "unlock-ssh" ];
home.packages = map superSimpleDesktopItem [ "kassandra2" ] ++ map terminalDesktopItem [ "unlock-ssh" ];
}

View file

@ -5,7 +5,7 @@ in
[
{
Orga = [
{ Kassandra = fork "kassandra"; }
{ Kassandra = fork "kassandra2"; }
{ Kalendar = "ikhal"; }
{ Habitica = fork "firefox https://habitica.com"; }
{ Tasks = "tasksh"; }

View file

@ -2,7 +2,7 @@
let
dhallFiles = pkgs.runCommand "kassandra-config-src" { } ''
mkdir $out
${pkgs.kassandra}/bin/kassandra print-types > $out/types.dhall
${pkgs.kassandra}/bin/kassandra2 print-types > $out/types.dhall
ln -s ${./kassandra}/{config,backend}.dhall $out
ln -s ${pkgs.privateFile "kassandra-uiConfig.dhall"} $out/uiConfig.dhall
'';