From 7b532599ae8f39b393e4601b35f9f720b772e223 Mon Sep 17 00:00:00 2001 From: osbm Date: Sun, 14 Dec 2025 20:25:51 +0300 Subject: [PATCH] init ares --- hosts/nixos/ares/configuration.nix | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 hosts/nixos/ares/configuration.nix diff --git a/hosts/nixos/ares/configuration.nix b/hosts/nixos/ares/configuration.nix new file mode 100644 index 0000000..a3e4fd2 --- /dev/null +++ b/hosts/nixos/ares/configuration.nix @@ -0,0 +1,37 @@ +{ + imports = [ + # ./hardware-configuration.nix + ../../../modules/nixos + ]; + + osbmModules = { + desktopEnvironment = { + plasma.enable = true; + }; + familyUser.enable = true; + programs = { + adbFastboot.enable = true; + steam.enable = true; + }; + hardware = { + hibernation.enable = false; + sound.enable = true; + }; + i18n.enable = true; + }; + + networking = { + hostName = "ares"; + + firewall.allowedTCPPorts = [ + 8889 + 8000 + ]; + + networkmanager.enable = true; + }; + + virtualisation.waydroid.enable = true; + + system.stateVersion = "26.05"; # changing this is a great taboo of the nixos world +}