nixos-config/modules/nix-common/default.nix

47 lines
1,018 B
Nix

{ lib
, pkgs
, config
, ...
}:
with lib; let
cfg = config.eboskma.nix-common;
in
{
options.eboskma.nix-common = {
enable = mkEnableOption "activate nix-common";
disable-cache = mkEnableOption "no not use binary cache";
};
config = mkIf cfg.enable {
nixpkgs = {
config.allowUnfree = true;
};
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
'';
settings = {
auto-optimise-store = true;
allowed-users = [ "root" ];
substituters = [
"https://nix-community.cachix.org"
"https://marcus7070.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"marcus7070.cachix.org-1:JawxHSgnYsgNYJmNqZwvLjI4NcOwrcEZDToWlT3WwXw="
];
};
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than=30d";
};
};
};
}