tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
chore: update bluepill-proxy
devins.page
1 month ago
0851a0ad
4a7ee20d
+6
-19
2 changed files
expand all
collapse all
unified
split
hosts
bluepill-proxy
default.nix
hardware.nix
+1
-1
hosts/bluepill-proxy/default.nix
···
4
4
];
5
5
6
6
networking.hostName = "bluepill-proxy";
7
7
-
networking.domain = "vps-6ad86777.vps.ovh.us";
7
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
1
-
# Do not modify this file! It was generated by ‘nixos-generate-config’
2
2
-
# and may be overwritten by future invocations. Please make changes
3
3
-
# to /etc/nixos/configuration.nix instead.
4
1
{
5
5
-
config,
6
2
lib,
7
7
-
pkgs,
8
3
modulesPath,
9
4
...
10
5
}: {
11
11
-
imports = [
12
12
-
(modulesPath + "/profiles/qemu-guest.nix")
13
13
-
];
6
6
+
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
14
7
15
15
-
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod"];
16
16
-
boot.initrd.kernelModules = [];
8
8
+
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" "virtio_pci" "virtio_scsi" "sd_mod"];
9
9
+
boot.initrd.kernelModules = ["nvme"];
17
10
boot.kernelModules = ["kvm-intel"];
18
11
boot.extraModulePackages = [];
19
12
20
13
fileSystems."/" = {
21
21
-
device = "/dev/disk/by-uuid/7657e475-328e-4851-8b39-f66dcc37b53b";
14
14
+
device = "/dev/sda1";
22
15
fsType = "ext4";
23
16
};
24
17
25
25
-
fileSystems."/boot" = {
26
26
-
device = "/dev/disk/by-uuid/EC85-BE4C";
27
27
-
fsType = "vfat";
28
28
-
};
29
29
-
30
30
-
boot.loader.systemd-boot.enable = true;
31
31
-
boot.loader.efi.canTouchEfiVariables = true;
18
18
+
boot.loader.grub.device = "/dev/sda";
32
19
33
20
swapDevices = [];
34
21