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