xonsh test

This commit is contained in:
Lucy Hochkamp 2023-12-03 23:08:28 +01:00
parent 9f52a76307
commit 2707a0bd5d
No known key found for this signature in database
3 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, config, lib, inputs, ... }:
let
cfg = config.ragon.xonsh;
in
{
options.ragon.xonsh.enable = lib.mkOption { default = false; };
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
xonsh
];
};
}