custom nixos iso build confs

This commit is contained in:
Git Sagar 2023-08-03 20:55:48 +00:00
commit b47437ff17
6 changed files with 35 additions and 0 deletions

7
common.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
boot.supportedFilesystems = [ "ntfs" ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
environment.systemPackages = with pkgs; [ git htop btop usbutils pciutils file iotop iftop tmux micro (pass.withExtensions (ext: [ext.pass-otp])) ];
}