mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-07 05:08:53 -05:00
32 lines
605 B
Nix
32 lines
605 B
Nix
{
|
|
config,
|
|
inputs,
|
|
pkgs,
|
|
modulesPath,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.disko.nixosModules.disko
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.nvix.packages.${pkgs.system}.default
|
|
vim
|
|
git
|
|
just
|
|
curl
|
|
wget
|
|
disko
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
boot.supportedFilesystems = lib.mkForce ["zfs" "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
|
|
|
|
networking = {
|
|
wireless.enable = lib.mkForce false;
|
|
networkmanager.enable = true;
|
|
enableIPv6 = false;
|
|
};
|
|
}
|