mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-14 19:14:10 -05:00
22 lines
344 B
Nix
22 lines
344 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "Parzival-Framework";
|
|
|
|
user.crow.enable = true;
|
|
|
|
desktop.sway.enable = true;
|
|
|
|
module.gui.enable = true;
|
|
module.programming.enable = true;
|
|
module.hacking.enable = true;
|
|
software.keyd.enable = true;
|
|
}
|