mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 17:34:05 -05:00
25 lines
473 B
Nix
25 lines
473 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
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
boot.supportedFilesystems = lib.mkForce ["zfs" "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
|
|
}
|