27 lines
412 B
Nix
27 lines
412 B
Nix
{ nixpkgs, arion, ... }:
|
|
|
|
let
|
|
overlay-arion = arion.overlay;
|
|
|
|
nixpkgsConfig = {
|
|
overlays = [
|
|
overlay-arion
|
|
];
|
|
|
|
config = {
|
|
allowUnfree = true;
|
|
allowBroken = true;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
nixosConfigurations.sail = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
nixpkgs = nixpkgsConfig;
|
|
modules = [
|
|
arion.nixosModules.arion
|
|
|
|
../hosts/sail.nix
|
|
];
|
|
};
|
|
}
|