install
This commit is contained in:
26
hosts/installer/configuration.nix
Normal file
26
hosts/installer/configuration.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user