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