mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
{
|
|
nix,
|
|
inputs,
|
|
_file,
|
|
}:
|
|
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
#
|
|
# Flake registry and $NIX_PATH pinning
|
|
#
|
|
nix.registry = lib.pipe inputs [
|
|
(lib.filterAttrs (_: lib.isType "flake"))
|
|
(lib.mapAttrs (_: flake: { inherit flake; }))
|
|
(x: x // { nixpkgs.flake = inputs.unstable; })
|
|
];
|
|
|
|
environment.etc = lib.mapAttrs' (name: value: {
|
|
name = "nix/path/${name}";
|
|
value.source = value.flake;
|
|
}) config.nix.registry;
|
|
nix.nixPath = [ "/etc/nix/path" ];
|
|
#
|
|
# Ignore global registry
|
|
#
|
|
nix.settings.flake-registry = "";
|
|
#
|
|
# Use nix directly from master
|
|
#
|
|
nix.package = nix.packages.default.overrideAttrs (old: {
|
|
patches = old.patches or [ ] ++ [
|
|
(pkgs.fetchpatch {
|
|
url = "https://github.com/NixOS/nix/commit/b6ae3be9c6ec4e9de55479188e76fc330b2304dd.patch";
|
|
hash = "sha256-VyIywGo1ie059wXmGWx+bNeHz9lNk6nlkJ/Qgd1kmzw=";
|
|
})
|
|
];
|
|
});
|
|
#
|
|
# Other nix settings
|
|
#
|
|
nix.settings = {
|
|
experimental-features = [
|
|
"auto-allocate-uids"
|
|
"ca-derivations"
|
|
"cgroups"
|
|
"daemon-trust-override"
|
|
"dynamic-derivations"
|
|
"fetch-closure"
|
|
"flakes"
|
|
"nix-command"
|
|
"no-url-literals"
|
|
"parse-toml-timestamps"
|
|
"read-only-local-store"
|
|
"recursive-nix"
|
|
"configurable-impure-env"
|
|
];
|
|
auto-optimise-store = true;
|
|
warn-dirty = false;
|
|
#
|
|
# Use for testing
|
|
#
|
|
#allow-import-from-derivation = false;
|
|
trusted-users = [ "root" ];
|
|
allowed-users = [ "@wheel" ];
|
|
use-xdg-base-directories = true;
|
|
auto-allocate-uids = true;
|
|
#
|
|
# A option for the custom patch
|
|
#
|
|
reject-flake-config = true;
|
|
};
|
|
inherit _file;
|
|
}
|