From e67062454060c823cf6e3e96ca3fa8a338df9617 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 20 Dec 2024 22:53:46 +0100 Subject: [PATCH] enable Ng switch and rebuild --- hosts/lambdaos/configuration.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/hosts/lambdaos/configuration.nix b/hosts/lambdaos/configuration.nix index 5b6ad2f..bb4d339 100644 --- a/hosts/lambdaos/configuration.nix +++ b/hosts/lambdaos/configuration.nix @@ -389,5 +389,13 @@ # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "23.11"; # Did you read the comment? + system = { + switch = { + enableNg = true; + }; + rebuild = { + enableNg = true; + }; + stateVersion = "23.11"; # Did you read the comment? + }; }