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

36 lines
684 B
Nix
Raw Normal View History

2021-11-16 00:22:18 +01:00
{ 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 = ''
2021-12-24 17:57:22 +01:00
experimental-features = nix-command flakes
2021-11-16 00:22:18 +01:00
'';
2022-02-02 21:26:39 +01:00
settings = {
auto-optimise-store = true;
allowed-users = [ "root" ];
};
2021-11-16 00:22:18 +01:00
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than=30d";
};
};
};
}