Stuff
This commit is contained in:
parent
8d58150696
commit
7526c8a8e5
|
@ -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 = {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Reference in a new issue