From be95925e386ff52aecdc334ab028de159e58d5c4 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Tue, 3 Jan 2023 18:49:13 +0100 Subject: [PATCH] re-enable subsurface as build is fixed --- home/home.nix | 8 +------- nixos/configuration.nix | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/home/home.nix b/home/home.nix index b16e43a..dbc5007 100644 --- a/home/home.nix +++ b/home/home.nix @@ -43,13 +43,7 @@ let gpx-viewer gpxsee cawbird - #(subsurface.overrideAttrs (oldAttrs: { - # patches = (if (oldAttrs ? "patches") then oldAttrs.patches else []) ++ [ - # pkgs.fetchpatch { - # url = "https://github.com/subsurface/subsurface/commit/944165ea06e2f5edb70d64ce9a0bae4ab21017ba.patch"; - # hash = "1111111111111111111111111111111111111111111111111111"; - # }]; - # })) + subsurface yate # split and merge PDFs in a GUI pdfarranger diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 363eebc..dbba0e7 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -257,6 +257,23 @@ in # override tmpdir for daemon #systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp"; + # remote builders + #nix.buildMachines = [ + # { + # hostName = "build01.nix-community.org"; + # sshUser = "ssh-ng://schmittlauch"; + # sshKey = "/root/.ssh/remote_builder_key"; + # system = "x86_64-linux"; + # maxJobs = 64; + # supportedFeatures = [ + # "big-parallel" + # "kvm" + # "nixos-test" + # ]; + # } + #]; + programs.ssh.knownHosts."build01.nix-community.org".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIElIQ54qAy7Dh63rBudYKdbzJHrrbrrMXLYl7Pkmk88H"; + # package debugging # programs.sysdig.enable = true;