From beb67f3b2929e6edb598eb9bc7b27ea20731c898 Mon Sep 17 00:00:00 2001 From: osbm Date: Thu, 9 Oct 2025 13:50:44 +0300 Subject: [PATCH] add apollo --- hosts/apollo/configuration.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 hosts/apollo/configuration.nix diff --git a/hosts/apollo/configuration.nix b/hosts/apollo/configuration.nix new file mode 100644 index 0000000..3465bb9 --- /dev/null +++ b/hosts/apollo/configuration.nix @@ -0,0 +1,22 @@ +{ + lib, + inputs, + ... +}: +{ + imports = [ + ./hardware-configuration.nix + ../../modules + ]; + + myModules = { + enableKDE = false; + enableFonts = false; + blockYoutube = false; + blockTwitter = false; + }; + + i18n.inputMethod.enable = lib.mkForce false; # no need for japanese input method + system.stateVersion = "25.05"; + networking.hostName = "apollo"; +}