config

NixOS config
Log | Files | Refs | README | LICENSE

commit 51fe22b93be9f0486a2a3fccae1fbcfb0b173eb6 (tree)
parent d7ede9417112b9099c61f5b794213d3933f75cbd
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Tue,  1 Jul 2025 17:18:24 +0000

fra1-c: adjust partitions

Diffstat:
Mhosts/fra1-c/configuration.nix | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hosts/fra1-c/configuration.nix b/hosts/fra1-c/configuration.nix @@ -5,7 +5,7 @@ ... }: let - disk = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_50294864"; + disk = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_64370894"; in { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; @@ -35,7 +35,7 @@ in fileSystems = { "/boot" = { - device = "${disk}-part1"; + device = "${disk}-part3"; fsType = "vfat"; options = [ "fmask=0022" @@ -43,7 +43,7 @@ in ]; }; "/" = { - device = "${disk}-part3"; + device = "${disk}-part1"; fsType = "btrfs"; options = [ "compress=zstd" @@ -55,7 +55,7 @@ in swapDevices = [ { device = "${disk}-part2"; } ]; mj = { - stateVersion = "24.05"; + stateVersion = "25.05"; timeZone = "UTC"; username = "motiejus";