mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-03-01 07:32:36 -05:00
23 lines
439 B
Nix
23 lines
439 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
modulesPath,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
boot.supportedFilesystems = lib.mkForce ["btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
|
|
|
|
networking.wireless = lib.mkForce false;
|
|
|
|
desktop.sway.enable = true;
|
|
|
|
module.gui.enable = true;
|
|
module.programming.enable = true;
|
|
}
|