drawterm wrapper

feat/kile-v2
Ricard Illa 2023-02-18 15:46:08 +01:00
parent fe02feaf68
commit 670c049a34
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
2 changed files with 6 additions and 1 deletions

View File

@ -106,7 +106,8 @@ in {
allowDiscards = true;
};
};
secrets = { "/keyfile.bin" = "/boot/keyfile.bin"; };
# secrets = { "/keyfile.bin" = "/boot/keyfile.bin"; };
secrets = { "/keyfile.bin" = "/etc/luks-keys/root.bin"; };
};
};

View File

@ -0,0 +1,4 @@
{ config, pkgs, ... }:
let
drawterm_run = pkgs.callPackage ./drawterm-init.nix { inherit config pkgs; };
in { home.packages = [ pkgs.drawterm drawterm_run ]; }