1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 15:41:02 +01:00
home-manager/tests/modules/programs/ashell/default.nix
Austin Horstman 650a38ebe8 ashell: support yaml and toml config
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-07-05 00:26:25 -05:00

9 lines
326 B
Nix

{ lib, pkgs, ... }:
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
ashell-basic-toml = ./basic-toml-config.nix;
ashell-basic-yaml = ./basic-yaml-config.nix;
ashell-camelcase-migration = ./camelcase-migration.nix;
ashell-empty-settings = ./empty-settings.nix;
ashell-systemd-service = ./systemd-service.nix;
}