blob: 769a06ae717218254e2b64d4bba3d9639b231dd5 (
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
|
{
inputs,
pkgs,
...
}: {
nix = {
package = pkgs.nixUnstable;
registry.nixpkgs.flake = inputs.nixpkgs;
nixPath = [
"nixpkgs=flake:nixpkgs"
];
gc.automatic = true;
optimise.automatic = true;
settings = {
experimental-features = [
"nix-command"
"flakes"
"cgroups"
"auto-allocate-uids"
"repl-flake"
"no-url-literals"
];
use-cgroups = true;
auto-allocate-uids = true;
builders-use-substitutes = true;
auto-optimise-store = true;
warn-dirty = false;
trusted-users = [
"@wheel"
];
substituters = [
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
};
nixpkgs.config.allowUnfree = true;
# save uid/guid
environment.persistence."/nix/persist".directories = ["/var/lib/nixos"];
}
|