blob: fb67701ca1dcbabffccbd04715f6ebaa7db82a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
config,
lib,
inputs,
...
}: let
inherit (builtins) attrNames map;
inherit (lib) filterAttrs mapAttrs mkDefault mkEnableOption mkIf mkOption optionals types;
cfg = config.getchoo.basicConfig;
mapInputs = fn: map fn (attrNames inputs);
in {
options.getchoo.basicConfig = {
enable = mkEnableOption "getchoo's basic config" // {default = true;};
channelPath = {
enable =
mkEnableOption "enable channel path management"
// {default = true;};
dirname = mkOption {
type = types.str;
default = "/etc/nix/channels";
description = "directory where channels are saved";
};
};
};
config = mkIf cfg.enable {
nix =
{
gc = {
automatic = mkDefault true;
options = mkDefault "-d --delete-older-than 2d";
};
registry =
{n.flake = inputs.nixpkgs;}
// (mapAttrs (_: flake: {inherit flake;})
(filterAttrs (n: _: n != "nixpkgs") inputs));
settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes" "auto-allocate-uids" "repl-flake"];
};
}
// mkIf cfg.channelPath.enable {
nixPath = mapInputs (i: "${i}=${cfg.channelPath.dirname}/${i}");
};
systemd.tmpfiles.rules = optionals cfg.channelPath.enable (mapInputs (i: "L+ ${cfg.channelPath.dirname}/${i} - - - - ${inputs.${i}.outPath}"));
};
}
|