configurations for my servers and desktops
nix nixos flake dots dotfiles

chore: update bluepill-proxy

+6 -19
+1 -1
hosts/bluepill-proxy/default.nix
··· 4 4 ]; 5 5 6 6 networking.hostName = "bluepill-proxy"; 7 - networking.domain = "vps-6ad86777.vps.ovh.us"; 7 + networking.domain = "vps.ovh.us"; 8 8 9 9 users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILyOJLlmq653uVs/1KdVnaMzi+EolB7EJMJ7AdBxVi6m devin@devins.page'']; 10 10 users.users.devin.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILyOJLlmq653uVs/1KdVnaMzi+EolB7EJMJ7AdBxVi6m devin@devins.page''];
+5 -18
hosts/bluepill-proxy/hardware.nix
··· 1 - # Do not modify this file! It was generated by ‘nixos-generate-config’ 2 - # and may be overwritten by future invocations. Please make changes 3 - # to /etc/nixos/configuration.nix instead. 4 1 { 5 - config, 6 2 lib, 7 - pkgs, 8 3 modulesPath, 9 4 ... 10 5 }: { 11 - imports = [ 12 - (modulesPath + "/profiles/qemu-guest.nix") 13 - ]; 6 + imports = [(modulesPath + "/profiles/qemu-guest.nix")]; 14 7 15 - boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod"]; 16 - boot.initrd.kernelModules = []; 8 + boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" "virtio_pci" "virtio_scsi" "sd_mod"]; 9 + boot.initrd.kernelModules = ["nvme"]; 17 10 boot.kernelModules = ["kvm-intel"]; 18 11 boot.extraModulePackages = []; 19 12 20 13 fileSystems."/" = { 21 - device = "/dev/disk/by-uuid/7657e475-328e-4851-8b39-f66dcc37b53b"; 14 + device = "/dev/sda1"; 22 15 fsType = "ext4"; 23 16 }; 24 17 25 - fileSystems."/boot" = { 26 - device = "/dev/disk/by-uuid/EC85-BE4C"; 27 - fsType = "vfat"; 28 - }; 29 - 30 - boot.loader.systemd-boot.enable = true; 31 - boot.loader.efi.canTouchEfiVariables = true; 18 + boot.loader.grub.device = "/dev/sda"; 32 19 33 20 swapDevices = []; 34 21