mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-25 08:09:08 +02:00
12 lines
252 B
Nix
12 lines
252 B
Nix
{ ... }: {
|
|
flake.nixosModules.gaming-sys-nexusmods = { pkgs, ... }: {
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"nexusmods-app-unfree-0.21.1"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
nexusmods-app-unfree
|
|
];
|
|
};
|
|
}
|