Use arion overlay
This commit is contained in:
parent
78eacc70a2
commit
33e742804a
1 changed files with 15 additions and 0 deletions
|
@ -1,8 +1,23 @@
|
|||
{ 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
|
||||
|
||||
|
|
Loading…
Reference in a new issue