10 lines
124 B
Nix
10 lines
124 B
Nix
|
|
{ config, pkgs, lib, ... }:
|
||
|
|
{
|
||
|
|
config = {
|
||
|
|
environment.systemPackages = with pkgs; [
|
||
|
|
appimage-run
|
||
|
|
];
|
||
|
|
|
||
|
|
};
|
||
|
|
}
|