foot: add testbed

This commit is contained in:
Daniel Thwaites 2024-11-08 18:23:42 +00:00
parent 06218e77d0
commit 7cd8165fc1
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

18
modules/foot/testbed.nix Normal file
View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
let package = pkgs.foot;
in {
stylix.testbed.application = {
enable = true;
name = "org.codeberg.dnkl.foot";
inherit package;
};
home-manager.sharedModules = [{
programs.foot = {
enable = true;
inherit package;
};
}];
}