This commit is contained in:
Daniel Flanagan 2023-09-04 11:23:31 -05:00
parent 8d58150696
commit 7526c8a8e5
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,8 @@
{ disks ? [ "/dev/vda" ], ... }: { { disks ? [ "/dev/vda" ], ... }: {
disko.devices = { disko.devices = {
disk = { disk = {
vdb = { # TODO: would be nice to give this a good name?
primary = {
type = "disk"; type = "disk";
device = builtins.elemAt disks 0; device = builtins.elemAt disks 0;
content = { content = {

View file

@ -40,7 +40,8 @@ in
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
# TODO: bootloader? grub since seemingly no uefi? boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
nixpkgs.config = { nixpkgs.config = {
allowUnfree = true; allowUnfree = true;