mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-06 04:38:53 -05:00
20 lines
385 B
Nix
20 lines
385 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
modulesPath,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
];
|
|
|
|
boot.supportedFilesystems = lib.mkForce ["btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
|
|
|
|
desktop.sway.enable = true;
|
|
|
|
module.gui.enable = true;
|
|
module.programming.enable = true;
|
|
module.wayland.enable = true;
|
|
}
|