aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/configuration.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-08-15 04:57:37 +0900
committerOphestra <cat@gensokyo.uk>2025-08-15 05:16:51 +0900
commit4ffeec3004607b76f73e504da220a1490c598348 (patch)
tree68cca16c22814b13974db0f19c151f8eb31e2dae /test/configuration.nix
parent9ed3ba85eaba4bc4bd12b290dc4daf00ffe159dc (diff)
hst/enablement: editor friendly enablement adaptor
Having the bit field value here (in decimal, no less) is unfriendly to text editors. Use a bunch of booleans here to improve ease of use. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'test/configuration.nix')
-rw-r--r--test/configuration.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/configuration.nix b/test/configuration.nix
index 2c848bc1..b7970dd9 100644
--- a/test/configuration.nix
+++ b/test/configuration.nix
@@ -126,7 +126,7 @@
wayland-utils
];
command = "foot";
- capability = {
+ enablements = {
dbus = false;
pulse = false;
};
@@ -141,7 +141,7 @@
share = pkgs.foot;
packages = [ ];
command = "foot";
- capability = {
+ enablements = {
dbus = false;
pulse = false;
};
@@ -154,7 +154,7 @@
share = pkgs.foot;
packages = [ pkgs.foot ];
command = "foot";
- capability.dbus = false;
+ enablements.dbus = false;
};
"cat.gensokyo.extern.Alacritty.x11" = {
@@ -171,7 +171,7 @@
mesa-demos
];
command = "alacritty";
- capability = {
+ enablements = {
wayland = false;
x11 = true;
dbus = false;
@@ -192,7 +192,7 @@
wayland-utils
];
command = "foot";
- capability = {
+ enablements = {
dbus = false;
pulse = false;
};
@@ -204,7 +204,7 @@
verbose = true;
share = pkgs.strace;
command = "strace true";
- capability = {
+ enablements = {
wayland = false;
x11 = false;
dbus = false;