All checks were successful
Build iso when a new version is pushed / test (push) Successful in 1m36s
13 lines
216 B
Nix
13 lines
216 B
Nix
{ ... }:
|
|
|
|
let
|
|
nix-alien-pkgs = import (
|
|
builtins.fetchTarball "https://github.com/thiagokokada/nix-alien/tarball/master"
|
|
) { };
|
|
in
|
|
{
|
|
environment.systemPackages = with nix-alien-pkgs; [
|
|
nix-alien
|
|
];
|
|
}
|