From 748e39b738d25bb885bc7e1038726377312f0360 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Thu, 28 Oct 2021 22:53:04 +0200 Subject: [PATCH 1/2] replace transmission with qBittorrent because of more standards --- home/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/home.nix b/home/home.nix index 5f33ef5..bd129a3 100644 --- a/home/home.nix +++ b/home/home.nix @@ -42,7 +42,7 @@ let yate # split and merge PDFs in a GUI pdfarranger - transmission-qt + qbittorrent #(pkgs.pidgin-with-plugins.override { # plugins = [ pkgs.pidginotr ];}) From 1c0357f90a32b028640fbd7197856723913c4a52 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Tue, 2 Nov 2021 04:00:59 +0100 Subject: [PATCH 2/2] already enable the experimental nix command in preparation for nix version 2.4 --- nixos/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 2648468..f9ef8c1 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -240,11 +240,13 @@ in # Enable all sysrq functions (useful to recover from some issues): boot.kernel.sysctl."kernel.sysrq" = 1; # NixOS default: 16 (only the sync command) - # keep build-time deps around for offline-rebuilding nix.extraOptions = '' + # keep build-time deps around for offline-rebuilding gc-keep-outputs = true gc-keep-derivations = true + trusted-users = spiollinux + experimental-features = nix-command ''; # use all cores for building nix.buildCores = 0;