remove nix store from vpsfree

This commit is contained in:
Cyryl Płotnicki 2023-01-01 23:00:13 +00:00
parent 16f5e6abd4
commit 570b008a30

View file

@ -1,10 +1,4 @@
{ { config, pkgs, inputs, lib, ... }: {
config,
pkgs,
inputs,
lib,
...
}: {
networking.hostName = "vpsfree1"; networking.hostName = "vpsfree1";
imports = [ imports = [
@ -24,14 +18,13 @@
./ssh.nix ./ssh.nix
./syncthing-relay.nix ./syncthing-relay.nix
./woodpecker.nix ./woodpecker.nix
./nix-store-server.nix
]; ];
systemd.extraConfig = '' systemd.extraConfig = ''
DefaultTimeoutStartSec=900s DefaultTimeoutStartSec=900s
''; '';
boot.binfmt.emulatedSystems = ["aarch64-linux"]; boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";
nix.settings.cores = 8; nix.settings.cores = 8;
} }