makemake: Fix config
Eelco Dolstra committed
Jun 29, 2023 at 15:48 UTC
6a35d0ee007603f08476723c14f90665459c555d
3 files changed
+5
-3
ngi0/makemake/flake.nix
+3
-1
@@ -17,8 +17,10 @@
17
18
({ config, lib, pkgs, ... }: {
19
20
+ networking.hostName = "makemake";
21
+
22
nixpkgs.overlays =
21
- [ nix.overlay
23
+ [ nix.overlays.default
24
];
25
26
system.configurationRevision = self.rev
ngi0/makemake/hardware.nix
+1
-1
@@ -1,7 +1,7 @@
1
{ lib, ... }:
2
3
{
4
- system.stateVersion = lib.mkDefault "19.09";
4
+ system.stateVersion = lib.mkDefault "23.05";
5
6
networking = {
7
defaultGateway = {
ngi0/makemake/hydra.nix
+1
-1
@@ -50,7 +50,7 @@ in
50
51
nix.extraOptions = lib.mkForce
52
''
53
- experimental-features = nix-command flakes ca-references ca-derivations
53
+ experimental-features = nix-command flakes ca-derivations
54
allowed-uris = https://github.com/ https://git.savannah.gnu.org/
55
'';
56