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