update profile

This commit is contained in:
Joseph Hanson 2024-05-25 16:11:35 -05:00
parent 52ab8bd189
commit 6e5514ce44
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
3 changed files with 3 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ disks ? [ "/dev/vda" ], ... }: {
{ disks ? [ "/dev/sda" ], ... }: {
disko.devices = {
disk = {
main = {

View file

@ -89,7 +89,7 @@
srvos.nixosModules.mixins-systemd-boot
disko.nixosModules.disko
./agents/fj-shadowfax-x86_64.nix
(import ./disko-shadowfax-kubevirt.nix { disks = [ "/dev/vda" ]; })
(import ./disko-shadowfax-kubevirt.nix { disks = [ "/dev/sda" ]; })
{
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "fj-shadowfax-02";

View file

@ -6,9 +6,8 @@
config = {
boot.growPartition = true;
boot.loader.grub.device = "/dev/vda";
boot.loader.grub.device = "/dev/sda";
fileSystems."/boot" = lib.mkDefault { device = "/dev/disk/by-partlabel/disk-main-ESP"; fsType = "vfat"; options=[ "fmask=0022" "dmask=0022" ]; };
fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-partlabel/disk-main-root"; fsType = "ext4"; };
networking.useNetworkd = true;