2021-02-06 15:35:38 +01:00
|
|
|
# Nix related settings
|
2021-05-29 20:28:27 +02:00
|
|
|
{ config, inputs, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.my.system.nix;
|
|
|
|
in
|
2021-02-06 15:35:38 +01:00
|
|
|
{
|
2021-05-29 20:28:27 +02:00
|
|
|
options.my.system.nix = with lib; {
|
|
|
|
enable = my.mkDisableOption "nix configuration";
|
|
|
|
|
|
|
|
addToRegistry = my.mkDisableOption "add inputs and self to registry";
|
2021-02-06 15:35:38 +01:00
|
|
|
};
|
2021-05-29 20:28:27 +02:00
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable (lib.mkMerge [
|
|
|
|
{
|
|
|
|
nix = {
|
|
|
|
package = pkgs.nixFlakes;
|
|
|
|
|
|
|
|
extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
(lib.mkIf cfg.addToRegistry {
|
|
|
|
nix.registry = {
|
|
|
|
# Allow me to use my custom package using `nix run self#pkg`
|
|
|
|
self.flake = inputs.self;
|
|
|
|
# Use pinned nixpkgs when using `nix run pkgs#<whatever>`
|
|
|
|
pkgs.flake = inputs.nixpkgs;
|
|
|
|
# Add NUR to run some packages that are only present there
|
|
|
|
nur.flake = inputs.nur;
|
|
|
|
};
|
|
|
|
})
|
|
|
|
]);
|
2021-02-06 15:35:38 +01:00
|
|
|
}
|