@cryptotaxi247 / infra / commits / e9e20969

Update to NixOS 22.05

Eelco Dolstra committed Sep 8, 2022 at 12:17 UTC e9e209692e1662e1789b54c9b892bb242fd7a21c
2 files changed +7 -5
bastion/configuration.nix
+6 -4
@@ -18,6 +18,8 @@ in
18
19 networking.hostName = "bastion";
20
21 + system.stateVersion = "18.03";
22 +
23 system.configurationRevision = flakes.self.rev
24 or (throw "Cannot deploy from an unclean source tree!");
25
@@ -26,9 +28,9 @@ in
28 nix.trustedUsers = [ "deploy" ];
29
30 nixpkgs.overlays = [
29 - nix.overlay
30 - nixops.overlay
31 - nixos-channel-scripts.overlay
31 + nix.overlays.default
32 + #nixops.overlay
33 + nixos-channel-scripts.overlays.default
34 ];
35
36 users.extraUsers.tarball-mirror.openssh.authorizedKeys.keys = [ sshKeys.eelco ];
@@ -45,7 +47,7 @@ in
47
48 environment.systemPackages = [
49 pkgs.awscli
48 - pkgs.nixops
50 + #pkgs.nixops
51 pkgs.terraform-full
52 pkgs.tmux
53 ];
modules/common.nix
+1 -1
@@ -14,7 +14,7 @@ with lib;
14 nix.buildCores = 0;
15 nix.extraOptions =
16 ''
17 - experimental-features = nix-command flakes ca-references
17 + experimental-features = nix-command flakes
18 '';
19
20 environment.systemPackages =