1
Fork 0
satellite/hosts/nixos/common/global/nix.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

2023-01-10 02:38:06 +01:00
{ config, lib, pkgs, inputs, ... }: {
nix = {
# Flake support and whatnot
package = pkgs.nixUnstable;
# Weekly clean up the store, I think
gc = {
automatic = true;
dates = "weekly";
};
# Protect nix shell from garbage collection
extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
# TODO: look into what this does,
# and why it was here in my old config
optimise.automatic = true;
# This will add each flake input as a registry
# To make nix3 commands consistent with your flake
registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
# This will additionally add your inputs to the system's legacy channels
# Making legacy nix commands consistent as well, awesome!
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
settings = {
# Enable flakes and new 'nix' command
2023-12-10 12:55:54 +01:00
experimental-features = [
"nix-command"
"flakes"
"repl-flake"
"auto-allocate-uids"
# "configurable-impure-env"
];
2023-01-10 02:38:06 +01:00
# Disable warning when rebuilding before commiting
warn-dirty = false;
# Deduplicate and optimize nix store
auto-optimise-store = true;
# TODO: what is a trusted user?
trusted-users = [ "root" "@wheel" ];
};
};
}