Init infrastructure
Benjamin, I hate you. Signed-off-by: Ryan Lahfa <federez-infra@lahfa.xyz>
This commit is contained in:
commit
8acdce99df
23 changed files with 602 additions and 0 deletions
14
bootstrap/iso.nix
Normal file
14
bootstrap/iso.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, modulesPath, lib, ... }: {
|
||||
imports = [
|
||||
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
||||
];
|
||||
# Use the latest Linux kernel
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
# Exclude ZFS.
|
||||
boot.supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" "bcachefs" ];
|
||||
|
||||
users.users.root.openssh.authorizedKeys.keyFiles = [
|
||||
../pubkeys/raito.keys
|
||||
];
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue