added zstd to iso.nix

This commit is contained in:
mc-fucker 2026-03-25 15:18:05 +01:00
parent d170d22b5b
commit 21ede9ce24

View file

@ -8,6 +8,8 @@
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix> <nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
]; ];
isoImage.squashfsCompression = "zstd";
users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFyGaBZIZYjiBhOFD2drvG316B9NUVSbMpTIhOCQur8P arch" ]; users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFyGaBZIZYjiBhOFD2drvG316B9NUVSbMpTIhOCQur8P arch" ];
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
@ -23,6 +25,7 @@
programs = { programs = {
zsh = import ./zsh.nix; zsh = import ./zsh.nix;
vim.defaultEditor = true; vim.defaultEditor = true;
vim.enable = true;
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [