mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-23 23:24:15 -05:00
22 lines
307 B
Nix
22 lines
307 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules
|
|
];
|
|
|
|
networking.hostName = "Dragneel";
|
|
|
|
user.dragneel.enable = true;
|
|
|
|
desktop.kde.enable = true;
|
|
|
|
module.gui.enable = true;
|
|
module.gaming.enable = true;
|
|
|
|
programs.noisetorch.enable = true;
|
|
}
|