migrate freun.dev to arm server

This commit is contained in:
Joakim Repomaa
2025-02-08 15:41:58 +02:00
parent 8664b2c976
commit 9f446bc1f6
4 changed files with 22 additions and 25 deletions

View File

@@ -17,13 +17,8 @@
};
};
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = false;
# boot.loader.grub.efiInstallAsRemovable = true;
# boot.loader.efi.efiSysMountPoint = "/boot/efi";
# Define on which hard drive you want to install Grub.
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "freun-dev"; # Define your hostname.
networking.useDHCP = false;
@@ -34,8 +29,8 @@
networks.static = {
name = "enp1s0";
address = [
"95.217.223.61/32"
"2a01:4f9:c012:5e97::1/64"
"65.21.145.150/32"
"2a01:4f9:c011:9ac1::1/64"
];
routes = [
{ Gateway = "fe80::1"; }
@@ -142,5 +137,5 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
system.stateVersion = "24.11"; # Did you read the comment?
}