1
0

iso-base.nix 539 B

1234567891011121314151617181920212223242526
  1. { config, pkgs, modulesPath, ... }:
  2. {
  3. imports = [
  4. (modulesPath + "/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix")
  5. ];
  6. boot.kernelPackages = pkgs.linuxPackages_latest;
  7. boot.supportedFilesystems.zfs = false;
  8. environment.systemPackages = with pkgs; [
  9. nh
  10. git
  11. nano
  12. wget
  13. gparted
  14. gptfdisk
  15. ];
  16. services.openssh = {
  17. enable = true;
  18. settings.PermitRootLogin = "yes";
  19. };
  20. nixpkgs.config.allowUnfree = true;
  21. nix.settings.experimental-features = [ "nix-command" "flakes" ];
  22. }