1
0

iso-base.nix 498 B

12345678910111213141516171819202122232425
  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. environment.systemPackages = with pkgs; [
  8. nh
  9. git
  10. nano
  11. wget
  12. gparted
  13. gptfdisk
  14. ];
  15. services.openssh = {
  16. enable = true;
  17. settings.PermitRootLogin = "yes";
  18. };
  19. nixpkgs.config.allowUnfree = true;
  20. nix.settings.experimental-features = [ "nix-command" "flakes" ];
  21. }