xin/gui/arcan.nix

11 lines
253 B
Nix
Raw Normal View History

2022-08-25 12:21:35 -06:00
{ config, lib, pkgs, ... }:
2023-07-05 05:53:26 -06:00
with lib; {
2022-08-25 12:21:35 -06:00
options = {
arcan = { enable = mkEnableOption "Enable Arcan/Durden desktop."; };
};
config = mkIf config.arcan.enable {
2023-07-05 05:53:26 -06:00
environment.systemPackages = with pkgs; [ arcanPackages.all-wrapped ];
2022-08-25 12:21:35 -06:00
};
}