This commit is contained in:
2026-03-28 11:45:27 +02:00
parent 5cea40cfc9
commit 757eb8a8e5

View File

@@ -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";
};
}