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