init ares

This commit is contained in:
Osman Faruk Bayram 2025-12-14 20:25:51 +03:00
parent fcbe4cbbcf
commit 7b532599ae

View file

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