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; }