2021-05-15 10:04:44 +02:00
|
|
|
{ config, inputs, lib, pkgs, ... }:
|
2021-04-09 11:34:49 +02:00
|
|
|
let
|
2021-05-01 16:30:48 +02:00
|
|
|
# Adapted from https://nixos.wiki/wiki/Overlays
|
2021-04-09 11:34:49 +02:00
|
|
|
overlaysCompat = pkgs.writeTextFile {
|
|
|
|
name = "overlays-compat";
|
|
|
|
destination = "/overlays.nix";
|
2021-08-05 13:23:07 +02:00
|
|
|
text = /* nix */ ''
|
2021-04-09 11:34:49 +02:00
|
|
|
self: super:
|
|
|
|
with super.lib;
|
|
|
|
let
|
|
|
|
# Load the system config and get the `nixpkgs.overlays` option
|
2021-05-01 16:30:48 +02:00
|
|
|
# This fails gracefully if getFlake is not available
|
|
|
|
overlays = if builtins.hasAttr "getFlake" builtins
|
|
|
|
then (builtins.getFlake "/var/src/config").nixosConfigurations.${config.networking.hostName}.config.nixpkgs.overlays
|
|
|
|
else [ ];
|
2021-04-09 11:34:49 +02:00
|
|
|
in
|
|
|
|
# Apply all overlays to the input of the current "main" overlay
|
|
|
|
foldl' (flip extends) (_: super) overlays self
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
nix = {
|
2021-05-01 15:22:57 +02:00
|
|
|
# nix with flake support
|
2021-12-01 17:56:35 +01:00
|
|
|
package = pkgs.nixFlakes;
|
2021-05-01 15:22:57 +02:00
|
|
|
|
2021-05-15 10:04:44 +02:00
|
|
|
registry = with inputs; {
|
|
|
|
nixpkgs.flake = nixpkgs;
|
|
|
|
nixpkgs-unstable.flake = nixpkgs-unstable;
|
|
|
|
};
|
|
|
|
|
2021-04-09 11:34:49 +02:00
|
|
|
nixPath = [
|
2021-05-15 10:04:44 +02:00
|
|
|
"nixpkgs=${inputs.nixpkgs}"
|
2021-04-09 11:34:49 +02:00
|
|
|
"nixpkgs-overlays=${overlaysCompat}"
|
|
|
|
];
|
|
|
|
# Make sudoers trusted nix users
|
|
|
|
trustedUsers = [ "@wheel" ];
|
|
|
|
|
|
|
|
# On-the-fly optimisation of nix store
|
|
|
|
autoOptimiseStore = true;
|
|
|
|
extraOptions = ''
|
2021-09-08 20:01:15 +02:00
|
|
|
experimental-features = nix-command flakes
|
2021-04-09 11:34:49 +02:00
|
|
|
'' + lib.optionalString config.sbruder.full ''
|
|
|
|
# Keep output of derivations with gc root
|
|
|
|
keep-outputs = true
|
|
|
|
keep-derivations = true
|
|
|
|
'';
|
2021-12-06 16:00:41 +01:00
|
|
|
|
2021-04-09 11:34:49 +02:00
|
|
|
# Make nix build in background less noticeable
|
2021-11-20 16:29:48 +01:00
|
|
|
daemonCPUSchedPolicy = "batch";
|
|
|
|
daemonIOSchedPriority = 5; # 0-7
|
2021-12-06 16:00:41 +01:00
|
|
|
};
|
2021-05-15 10:04:44 +02:00
|
|
|
|
|
|
|
nixpkgs.overlays = with inputs; [
|
2022-06-23 19:03:58 +02:00
|
|
|
self.overlays.default
|
2021-05-15 10:04:44 +02:00
|
|
|
nixpkgs-overlay.overlay
|
|
|
|
(final: prev: {
|
|
|
|
unstable = import nixpkgs-unstable {
|
|
|
|
inherit (config.nixpkgs)
|
|
|
|
config
|
|
|
|
overlays
|
|
|
|
system;
|
|
|
|
};
|
|
|
|
})
|
|
|
|
];
|
2021-07-11 10:43:43 +02:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
cached-nix-shell
|
|
|
|
];
|
2021-04-09 11:34:49 +02:00
|
|
|
}
|