forked from pub-solar/os
5e0ca31d02
Now you can add packages to the list in pkgs/override.nix and they will be pulled in from nixpkgs master instead of the default NixOS flake when installed.
79 lines
1.9 KiB
Nix
79 lines
1.9 KiB
Nix
{
|
|
description = "A highly structured configuration database.";
|
|
|
|
inputs =
|
|
{
|
|
master.url = "nixpkgs/master";
|
|
nixos.url = "nixpkgs/release-20.03";
|
|
home.url = "github:rycee/home-manager/bqv-flakes";
|
|
};
|
|
|
|
outputs = inputs@{ self, home, nixos, master }:
|
|
let
|
|
inherit (builtins) attrNames attrValues readDir;
|
|
inherit (nixos) lib;
|
|
inherit (lib) removeSuffix recursiveUpdate;
|
|
inherit (utils) pathsToImportedAttrs;
|
|
|
|
utils = import ./lib/utils.nix { inherit lib; };
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgImport = pkgs:
|
|
import pkgs {
|
|
inherit system;
|
|
overlays = attrValues self.overlays;
|
|
config = { allowUnfree = true; };
|
|
};
|
|
|
|
pkgset = {
|
|
osPkgs = pkgImport nixos;
|
|
pkgs = pkgImport master;
|
|
};
|
|
|
|
in
|
|
with pkgset;
|
|
{
|
|
nixosConfigurations =
|
|
import ./hosts (recursiveUpdate inputs {
|
|
inherit lib pkgset system utils;
|
|
}
|
|
);
|
|
|
|
devShell."${system}" = import ./shell.nix {
|
|
inherit pkgs;
|
|
};
|
|
|
|
overlay = import ./pkgs;
|
|
|
|
overlays =
|
|
let
|
|
overlayDir = ./overlays;
|
|
fullPath = name: overlayDir + "/${name}";
|
|
overlayPaths = map fullPath (attrNames (readDir overlayDir));
|
|
in
|
|
pathsToImportedAttrs overlayPaths;
|
|
|
|
packages."${system}" = (self.overlay osPkgs osPkgs);
|
|
|
|
nixosModules =
|
|
let
|
|
# binary cache
|
|
cachix = import ./cachix.nix;
|
|
cachixAttrs = { inherit cachix; };
|
|
|
|
# modules
|
|
moduleList = import ./modules/list.nix;
|
|
modulesAttrs = pathsToImportedAttrs moduleList;
|
|
|
|
# profiles
|
|
profilesList = import ./profiles/list.nix;
|
|
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
|
|
|
|
in
|
|
recursiveUpdate
|
|
(recursiveUpdate cachixAttrs modulesAttrs)
|
|
profilesAttrs;
|
|
};
|
|
}
|