Home manager configuration says this is needed, don't know why, also small refactor to put nix config in shared

This commit is contained in:
Lillian Violet 2024-03-03 20:55:49 +01:00
parent dd9b5aefb0
commit 3b28b497cd
4 changed files with 23 additions and 66 deletions

View file

@ -25,28 +25,6 @@
};
};
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
# 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
experimental-features = "nix-command flakes";
# Deduplicate and optimize nix store
auto-optimise-store = true;
};
};
environment.systemPackages = with pkgs; [
# Custom tools
dvd