Move xbanish configuration

This commit is contained in:
Oliver Davies 2025-07-25 10:30:13 +01:00
parent 37673680cd
commit ad516fd7e0
4 changed files with 3 additions and 16 deletions

View file

@ -14,7 +14,6 @@
./podman.nix
./st.nix
./thunar.nix
./xbanish.nix
./zram.nix
];
}

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
with lib;
let
cfg = config.features.core.xbanish;
in
{
options.features.core.xbanish.enable = mkEnableOption "Enable xbanish";
config = mkIf cfg.enable {
services.xbanish.enable = true;
};
}