diff --git a/hosts/installer/configuration.nix b/hosts/installer/configuration.nix new file mode 100644 index 0000000..78cddc0 --- /dev/null +++ b/hosts/installer/configuration.nix @@ -0,0 +1,26 @@ +{ pkgs, inputs, ... }: + +{ + nix.settings.experimental-features = [ + "nix-command" + "flakes" + ]; + + environment.systemPackages = with pkgs; [ + git + curl + wget + rsync + parted + gptfdisk + btrfs-progs + nvme-cli + vim + inputs.disko.packages.${pkgs.system}.default + ]; + + services.openssh = { + enable = true; + settings.PermitRootLogin = "yes"; + }; +}