diff --git a/flake.nix b/flake.nix index 5bd71f1e..48cfcbd9 100644 --- a/flake.nix +++ b/flake.nix @@ -138,7 +138,7 @@ nixosConfigurations = processConfigurations { picard = nixosSystem "x86_64-linux" [ ./hosts/picard/default.nix ]; ds9 = nixosSystem "x86_64-linux" [ ./hosts/ds9/default.nix ]; - backuppi = nixosSystem "aarch64-linux" [ ./hosts/backuppi/default.nix ]; + daedalusvm = nixosSystem "aarch64-linux" [ ./hosts/daedalusvm/default.nix ]; }; darwinConfigurations = processConfigurations { daedalus = darwinSystem "aarch64-darwin" [ ./hosts/daedalus/default.nix ]; diff --git a/hosts/daedalusvm/default.nix b/hosts/daedalusvm/default.nix index 51e5aa02..c5badebe 100644 --- a/hosts/daedalusvm/default.nix +++ b/hosts/daedalusvm/default.nix @@ -18,10 +18,12 @@ in boot.loader.efi.canTouchEfiVariables = true; # Immutable users due to tmpfs users.mutableUsers = false; + services.openssh.forwardX11 = true; ragon = { cli.enable = true; user.enable = true; + system.security.enable = false; services = { docker.enable = true; diff --git a/hosts/daedalusvm/hardware-configuration.nix b/hosts/daedalusvm/hardware-configuration.nix index 338adfa3..384e7e2e 100644 --- a/hosts/daedalusvm/hardware-configuration.nix +++ b/hosts/daedalusvm/hardware-configuration.nix @@ -7,15 +7,15 @@ imports = [ "${modulesPath}/profiles/qemu-guest.nix" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ]; - networking.interfaces.enp0s6.useDHCP = true; - swapDevices = [{ device = "/dev/disk/by-id/NIXOS_SWAP"; }]; + networking.interfaces.enp0s5.useDHCP = true; + swapDevices = [{ device = "/dev/disk/by-label/NIXOS_SWAP"; }]; fileSystems."/boot" = { - device = "/dev/disk/by-id/NIXOS_BOOT"; - fstype = "vfat"; + device = "/dev/disk/by-label/NIXOS_BOOT"; + fsType = "vfat"; }; fileSystems."/" = { - device = "/dev/disk/by-id/NIXOS_ROOT"; + device = "/dev/disk/by-label/NIXOS_ROOT"; fsType = "ext4"; }; }