flake/hosts/nixos/tartarus/configuration.nix
osbm f8b6dd5e7c turn string option into the many sub options
This enables me to enable multiple desktop environments at the same
time.
2025-11-23 11:49:34 +03:00

21 lines
459 B
Nix

{
imports = [
./hardware-configuration.nix
../../../modules/nixos
];
osbmModules = {
desktopEnvironment.plasma.enable = true;
machineType = "laptop";
emulation.aarch64.enable = true;
hardware.sound.enable = true;
programs.steam.enable = true;
};
networking.hostName = "tartarus"; # Define your hostname.
# Enable networking
networking.networkmanager.enable = true;
system.stateVersion = "24.05"; # lalalalala
}