aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/fpkg/test/foot.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-06-25 20:44:49 +0900
committerOphestra <cat@gensokyo.uk>2025-06-25 20:50:24 +0900
commitaa454b158f3713b2ee47162837dcea1efdce0ee6 (patch)
tree71c9ebf64bf518311fccef1b9c0fc25d59778c26 /cmd/fpkg/test/foot.nix
parent7007bd6a1c022dee1951413b820a54f5b4271bbb (diff)
cmd/planterette: remove hsu special case
Remove special case and invoke hakurei out of process. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/fpkg/test/foot.nix')
-rw-r--r--cmd/fpkg/test/foot.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/cmd/fpkg/test/foot.nix b/cmd/fpkg/test/foot.nix
deleted file mode 100644
index 76b677ac..00000000
--- a/cmd/fpkg/test/foot.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- lib,
- buildPackage,
- foot,
- wayland-utils,
- inconsolata,
-}:
-
-buildPackage {
- name = "foot";
- inherit (foot) version;
-
- identity = 2;
- id = "org.codeberg.dnkl.foot";
-
- modules = [
- {
- home.packages = [
- foot
-
- # For wayland-info:
- wayland-utils
- ];
- }
- ];
-
- nixosModules = [
- {
- # To help with OCR:
- environment.etc."xdg/foot/foot.ini".text = lib.generators.toINI { } {
- main = {
- font = "inconsolata:size=14";
- };
- colors = rec {
- foreground = "000000";
- background = "ffffff";
- regular2 = foreground;
- };
- };
-
- fonts.packages = [ inconsolata ];
- }
- ];
-
- script = ''
- exec foot "$@"
- '';
-}