| 1234567891011121314151617181920212223242526 |
- { config, pkgs, modulesPath, ... }:
- {
- imports = [
- (modulesPath + "/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix")
- ];
- boot.kernelPackages = pkgs.linuxPackages_latest;
- boot.supportedFilesystems.zfs = false;
- environment.systemPackages = with pkgs; [
- nh
- git
- nano
- wget
- gparted
- gptfdisk
- ];
- services.openssh = {
- enable = true;
- settings.PermitRootLogin = "yes";
- };
- nixpkgs.config.allowUnfree = true;
- nix.settings.experimental-features = [ "nix-command" "flakes" ];
- }
|