Abhinav Sarkar
cdaa5962e6
Flake lock file updates: • Updated input 'home-manager': 'github:nix-community/home-manager/b9e3a29864798d55ec1d6579ab97876bb1ee9664' (2023-03-02) → 'github:nix-community/home-manager/7224d7c54c5fc74cdf60b208af6148ed3295aa32' (2023-03-10) • Updated input 'home-manager/utils': 'github:numtide/flake-utils/5aed5285a952e0b949eb3ba02c12fa4fcfef535f' (2022-11-02) → 'github:numtide/flake-utils/3db36a8b464d0c4532ba1c7dda728f4576d6d073' (2023-02-13) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/ae8bdd2de4c23b239b5a771501641d2ef5e027d0' (2023-03-01) → 'github:nixos/nixpkgs/b9c00c1d41ccd6385da243415299b39aa73357be' (2023-03-10)
20 lines
423 B
Nix
20 lines
423 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix.package = pkgs.nixStable;
|
|
nix.settings = {
|
|
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
|
max-jobs = 6;
|
|
cores = 2;
|
|
auto-optimise-store = true;
|
|
connect-timeout = 5;
|
|
log-lines = 25;
|
|
min-free = 128000000;
|
|
max-free = 1000000000;
|
|
fallback = true;
|
|
warn-dirty = false;
|
|
keep-outputs = true;
|
|
};
|
|
}
|