add daedalusvm to flake
This commit is contained in:
parent
76679c2275
commit
408a693b3f
3 changed files with 8 additions and 6 deletions
|
|
@ -138,7 +138,7 @@
|
||||||
nixosConfigurations = processConfigurations {
|
nixosConfigurations = processConfigurations {
|
||||||
picard = nixosSystem "x86_64-linux" [ ./hosts/picard/default.nix ];
|
picard = nixosSystem "x86_64-linux" [ ./hosts/picard/default.nix ];
|
||||||
ds9 = nixosSystem "x86_64-linux" [ ./hosts/ds9/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 {
|
darwinConfigurations = processConfigurations {
|
||||||
daedalus = darwinSystem "aarch64-darwin" [ ./hosts/daedalus/default.nix ];
|
daedalus = darwinSystem "aarch64-darwin" [ ./hosts/daedalus/default.nix ];
|
||||||
|
|
|
||||||
|
|
@ -18,10 +18,12 @@ in
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
# Immutable users due to tmpfs
|
# Immutable users due to tmpfs
|
||||||
users.mutableUsers = false;
|
users.mutableUsers = false;
|
||||||
|
services.openssh.forwardX11 = true;
|
||||||
|
|
||||||
ragon = {
|
ragon = {
|
||||||
cli.enable = true;
|
cli.enable = true;
|
||||||
user.enable = true;
|
user.enable = true;
|
||||||
|
system.security.enable = false;
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
docker.enable = true;
|
docker.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -7,15 +7,15 @@
|
||||||
imports = [ "${modulesPath}/profiles/qemu-guest.nix" ];
|
imports = [ "${modulesPath}/profiles/qemu-guest.nix" ];
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ];
|
||||||
|
|
||||||
networking.interfaces.enp0s6.useDHCP = true;
|
networking.interfaces.enp0s5.useDHCP = true;
|
||||||
swapDevices = [{ device = "/dev/disk/by-id/NIXOS_SWAP"; }];
|
swapDevices = [{ device = "/dev/disk/by-label/NIXOS_SWAP"; }];
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/disk/by-id/NIXOS_BOOT";
|
device = "/dev/disk/by-label/NIXOS_BOOT";
|
||||||
fstype = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/disk/by-id/NIXOS_ROOT";
|
device = "/dev/disk/by-label/NIXOS_ROOT";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue