mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-18 21:14:12 -05:00
26 lines
546 B
Nix
26 lines
546 B
Nix
{
|
|
inputs,
|
|
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 ["zfs" "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
|
|
networking.wireless.enable = false;
|
|
|
|
users.users.nixos.authorizedKeys.keyFiles = lib.mkForce [
|
|
inputs.nix-secrets.keys.default
|
|
];
|
|
|
|
user.live.enable = true;
|
|
|
|
module.programming.enable = true;
|
|
}
|