7 lines
350 B
Nix
7 lines
350 B
Nix
{ 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])) ];
|
|
}
|