From c8c8738bfde945c6c9d6c1bc2c232a1120215374 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:07:49 +0100 Subject: [PATCH] oops --- hosts/laptop/configuration.nix | 5 +++++ hosts/laptop/home.nix | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index d9b91ed..eae9518 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -29,6 +29,11 @@ home-manager.users."${config.var.username}" = import ./home.nix; + # FIXME: Temporary, for a course on Kubernetes + networking.extraHosts = '' + 127.0.0.1 super-ai-croquette.local + ''; + # Don't touch this system.stateVersion = "24.05"; } diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index 458557d..258cbdc 100644 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -98,10 +98,5 @@ stateVersion = "24.05"; }; - # FIXME: Temporary, for a course on Kubernetes - networking.extraHosts = '' - 127.0.0.1 super-ai-croquette.local - ''; - programs.home-manager.enable = true; }