mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
11 lines
234 B
Nix
11 lines
234 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselmodules.appimage = lib.mkEnableOption "appimage config";
|
|
config = lib.mkIf config.swarselmodules.appimage {
|
|
programs.appimage = {
|
|
enable = true;
|
|
binfmt = true;
|
|
};
|
|
};
|
|
|
|
}
|