diff --git a/config/sources/nix/sources.json b/config/sources/nix/sources.json index 0f298e0..80c9122 100644 --- a/config/sources/nix/sources.json +++ b/config/sources/nix/sources.json @@ -17,10 +17,10 @@ "homepage": "", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "3cc8c47af31798040ea62499090540413279f832", - "sha256": "0l4pflis99q0095rrmxahp1w8jz38znq5pyni4x8n7cgcrv5gwq2", + "rev": "3aabf78bfcae62f5f99474f2ebbbe418f1c6e54f", + "sha256": "10g240brgjz7qi20adwajxwqrqb5zxc79ii1mc20fasgqlf2a8sx", "type": "tarball", - "url": "https://github.com/NixOS/nixos-hardware/archive/3cc8c47af31798040ea62499090540413279f832.tar.gz", + "url": "https://github.com/NixOS/nixos-hardware/archive/3aabf78bfcae62f5f99474f2ebbbe418f1c6e54f.tar.gz", "url_template": "https://github.com///archive/.tar.gz" }, "nixpkgs": { @@ -29,10 +29,10 @@ "homepage": "", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d0220562772b787d58c48df3434f36da1f552bdc", - "sha256": "1nhh4afidrq7crb82ax3f5gqn17scxi7rl6zlxnzcplnwr0waczq", + "rev": "3ef1d2a9602c18f8742e1fb63d5ae9867092e3d6", + "sha256": "0yicccl89rfa5nk4ic46ydihvzsw1phzsypnlzmzrdnwsxi3r9d4", "type": "tarball", - "url": "https://github.com/NixOS/nixpkgs/archive/d0220562772b787d58c48df3434f36da1f552bdc.tar.gz", + "url": "https://github.com/NixOS/nixpkgs/archive/3ef1d2a9602c18f8742e1fb63d5ae9867092e3d6.tar.gz", "url_template": "https://github.com///archive/.tar.gz" }, "nixus": { diff --git a/deploy/default.nix b/deploy/default.nix index 9162e24..ee07e2e 100644 --- a/deploy/default.nix +++ b/deploy/default.nix @@ -15,14 +15,23 @@ in import "${sources.nixus}" {} ({ config, ... }: { wind = { lib, config, ... }: { host = "emelie@graven.dev"; configuration = ../config/hosts/wind/configuration.nix; + switchTimeout = 300; + successTimeout = 300; + ignoreFailingSystemdUnits = true; }; grondahl = { lib, config, ... }: { host = "emelie@anarkafem.dev"; configuration = ../config/hosts/grondahl/configuration.nix; + successTimeout = 300; + switchTimeout = 300; + ignoreFailingSystemdUnits = true; }; rudiger = { lib, config, ... }: { host = "emelie@cloud.graven.dev"; configuration = ../config/hosts/rudiger/configuration.nix; + switchTimeout = 300; + successTimeout = 300; + ignoreFailingSystemdUnits = true; }; }; })