init ares
This commit is contained in:
parent
fcbe4cbbcf
commit
7b532599ae
1 changed files with 37 additions and 0 deletions
37
hosts/nixos/ares/configuration.nix
Normal file
37
hosts/nixos/ares/configuration.nix
Normal 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
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue