mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
28 lines
512 B
Nix
28 lines
512 B
Nix
{
|
|
pkgs,
|
|
username,
|
|
...
|
|
}: {
|
|
nix = {
|
|
package = pkgs.lix;
|
|
|
|
gc = {
|
|
automatic = true;
|
|
options = "--delete-older-than 3d";
|
|
};
|
|
|
|
channel.enable = false;
|
|
|
|
settings = {
|
|
extra-platforms = ["aarch64-linux" "arm-linux"];
|
|
auto-optimise-store = true;
|
|
allowed-users = ["${username}"];
|
|
trusted-users = ["${username}"];
|
|
experimental-features = "nix-command flakes";
|
|
keep-going = true;
|
|
warn-dirty = false;
|
|
http-connections = 50;
|
|
};
|
|
};
|
|
}
|