mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-23 23:24:15 -05:00
18 lines
375 B
Nix
18 lines
375 B
Nix
{config, pkgs, ...}:{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "Parzival-Mobile";
|
|
|
|
user.crow.enable = true;
|
|
|
|
desktop.sway.enable = true;
|
|
|
|
module.gui.enable = true;
|
|
module.wayland.enable = true;
|
|
module.programming.enable = true;
|
|
module.hacking.enable = true;
|
|
module.mudding.enable = true;
|
|
}
|