13 lines
209 B
Nix
13 lines
209 B
Nix
{ config, inputs, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
system.activationScripts.installRoblox = {
|
|
text = ''
|
|
trap "${pkgs.flatpak}/bin/flatpak install -y https://sober.vinegarhq.org/sober.flatpakref" EXIT
|
|
'';
|
|
};
|
|
|
|
|
|
}
|