mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
34 lines
612 B
Nix
34 lines
612 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./topology-config.nix
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "Parzival";
|
|
|
|
user.crow.enable = true;
|
|
|
|
desktop.sway.enable = true;
|
|
|
|
module.gui.enable = true;
|
|
module.programming.enable = true;
|
|
module.hacking.enable = true;
|
|
module.mudding.enable = true;
|
|
module.gaming.enable = true;
|
|
module.appdevel.enable = true;
|
|
module.hobbies.enable = true;
|
|
|
|
programs.noisetorch.enable = true;
|
|
|
|
virtualisation.virtualbox.host = {
|
|
enableKvm = true;
|
|
enable = true;
|
|
addNetworkInterface = false;
|
|
};
|
|
}
|