From 6bff4474674122342975396e3e28116be43da745 Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 20 Aug 2022 19:29:57 +0200 Subject: [PATCH] rename other to thalassa --- flake.nix | 3 +-- nixos/hosts/thalassa/default.nix | 7 +++++++ nixos/hosts/{other => thalassa}/null/configuration.nix | 0 .../{other => thalassa}/null/hardware-configuration.nix | 0 nixos/hosts/{other => thalassa}/null/home.nix | 0 5 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 nixos/hosts/thalassa/default.nix rename nixos/hosts/{other => thalassa}/null/configuration.nix (100%) rename nixos/hosts/{other => thalassa}/null/hardware-configuration.nix (100%) rename nixos/hosts/{other => thalassa}/null/home.nix (100%) diff --git a/flake.nix b/flake.nix index 02d18fa..bab9c2e 100644 --- a/flake.nix +++ b/flake.nix @@ -82,13 +82,12 @@ # Make the coleman configuration colmena = lib.foldr (el: acc: acc // mkColmenaHost el) { - null = { ... }: { networking.hostName = "null"; imports = [ ./nixos/common - ./nixos/hosts/other/null/configuration.nix + ./nixos/hosts/thalassa/null/configuration.nix home-manager.nixosModules.home-manager ]; diff --git a/nixos/hosts/thalassa/default.nix b/nixos/hosts/thalassa/default.nix new file mode 100644 index 0000000..1c0f677 --- /dev/null +++ b/nixos/hosts/thalassa/default.nix @@ -0,0 +1,7 @@ +[ + { + hostname = "null"; + mac = ""; + type = "local"; + } +] diff --git a/nixos/hosts/other/null/configuration.nix b/nixos/hosts/thalassa/null/configuration.nix similarity index 100% rename from nixos/hosts/other/null/configuration.nix rename to nixos/hosts/thalassa/null/configuration.nix diff --git a/nixos/hosts/other/null/hardware-configuration.nix b/nixos/hosts/thalassa/null/hardware-configuration.nix similarity index 100% rename from nixos/hosts/other/null/hardware-configuration.nix rename to nixos/hosts/thalassa/null/hardware-configuration.nix diff --git a/nixos/hosts/other/null/home.nix b/nixos/hosts/thalassa/null/home.nix similarity index 100% rename from nixos/hosts/other/null/home.nix rename to nixos/hosts/thalassa/null/home.nix