flake: initial multiarch support
This commit is contained in:
parent
b7016c8d92
commit
7a6e725b53
16
flake.lock
16
flake.lock
@ -1,5 +1,20 @@
|
|||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"flake-utils": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1605370193,
|
||||||
|
"narHash": "sha256-YyMTf3URDL/otKdKgtoMChu4vfVL3vCMkRqpGifhUn0=",
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"rev": "5021eac20303a61fafe17224c087f5519baed54d",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "numtide",
|
||||||
|
"repo": "flake-utils",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"home": {
|
"home": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
@ -78,6 +93,7 @@
|
|||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"flake-utils": "flake-utils",
|
||||||
"home": "home",
|
"home": "home",
|
||||||
"master": "master",
|
"master": "master",
|
||||||
"nixos": "nixos",
|
"nixos": "nixos",
|
||||||
|
86
flake.nix
86
flake.nix
@ -6,15 +6,17 @@
|
|||||||
master.url = "nixpkgs/master";
|
master.url = "nixpkgs/master";
|
||||||
nixos.url = "nixpkgs/release-20.09";
|
nixos.url = "nixpkgs/release-20.09";
|
||||||
home.url = "github:nix-community/home-manager/release-20.09";
|
home.url = "github:nix-community/home-manager/release-20.09";
|
||||||
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ self, home, nixos, master, nur }:
|
outputs = inputs@{ self, home, nixos, master, flake-utils, nur }:
|
||||||
let
|
let
|
||||||
inherit (builtins) attrNames attrValues readDir;
|
inherit (builtins) attrNames attrValues readDir elem;
|
||||||
|
inherit (flake-utils.lib) eachDefaultSystem;
|
||||||
inherit (nixos) lib;
|
inherit (nixos) lib;
|
||||||
inherit (lib) removeSuffix recursiveUpdate genAttrs filterAttrs;
|
inherit (lib) all removeSuffix recursiveUpdate genAttrs filterAttrs;
|
||||||
inherit (utils) pathsToImportedAttrs genPkgset overlayPaths modules
|
inherit (utils) pathsToImportedAttrs genPkgset overlayPaths modules
|
||||||
genPackages;
|
genPackages pkgImport;
|
||||||
|
|
||||||
utils = import ./lib/utils.nix { inherit lib; };
|
utils = import ./lib/utils.nix { inherit lib; };
|
||||||
|
|
||||||
@ -27,33 +29,57 @@
|
|||||||
genPkgset {
|
genPkgset {
|
||||||
inherit master nixos overlays system;
|
inherit master nixos overlays system;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
outputs = {
|
||||||
|
nixosConfigurations =
|
||||||
|
import ./hosts (recursiveUpdate inputs {
|
||||||
|
inherit lib pkgset system utils;
|
||||||
|
});
|
||||||
|
|
||||||
|
overlay = import ./pkgs;
|
||||||
|
|
||||||
|
overlays = pathsToImportedAttrs overlayPaths;
|
||||||
|
|
||||||
|
nixosModules = modules;
|
||||||
|
|
||||||
|
templates.flk.path = ./.;
|
||||||
|
|
||||||
|
templates.flk.description = "flk template";
|
||||||
|
|
||||||
|
defaultTemplate = self.templates.flk;
|
||||||
|
};
|
||||||
in
|
in
|
||||||
with pkgset;
|
(eachDefaultSystem (system':
|
||||||
{
|
let
|
||||||
nixosConfigurations =
|
pkgs' = pkgImport {
|
||||||
import ./hosts (recursiveUpdate inputs {
|
pkgs = nixos;
|
||||||
inherit lib pkgset system utils;
|
system = system';
|
||||||
});
|
overlays = [ ];
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
devShell = import ./shell.nix {
|
||||||
|
pkgs = pkgs';
|
||||||
|
};
|
||||||
|
|
||||||
devShell."${system}" = import ./shell.nix {
|
packages =
|
||||||
pkgs = osPkgs;
|
let
|
||||||
};
|
packages' = genPackages {
|
||||||
|
overlay = self.overlay;
|
||||||
|
overlays = self.overlays;
|
||||||
|
pkgs = pkgs';
|
||||||
|
};
|
||||||
|
|
||||||
overlay = import ./pkgs;
|
filtered = filterAttrs
|
||||||
|
(_: v:
|
||||||
overlays = pathsToImportedAttrs overlayPaths;
|
(v.meta ? platforms)
|
||||||
|
&& (elem system' v.meta.platforms)
|
||||||
packages."${system}" = genPackages {
|
&& (
|
||||||
overlay = self.overlay;
|
(all (dev: dev.meta ? platforms) v.buildInputs)
|
||||||
overlays = self.overlays;
|
&& (all (dev: elem system' dev.meta.platforms) v.buildInputs)
|
||||||
pkgs = osPkgs;
|
))
|
||||||
};
|
packages';
|
||||||
|
in
|
||||||
nixosModules = modules;
|
filtered;
|
||||||
|
})) // outputs;
|
||||||
templates.flk.path = ./.;
|
|
||||||
templates.flk.description = "flk template";
|
|
||||||
|
|
||||||
defaultTemplate = self.templates.flk;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user