From cf079ba65b609b914db1a8f8dcd67b6e2891745c Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 29 May 2026 16:18:05 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20=D0=BC=D0=BE=D0=BD=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=B8=D1=81=D0=BA=D0=BE=D0=B2=20?= =?UTF-8?q?=D0=BD=D0=B0=20cloud-pc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nixos/hosts/cloud-pc.nix | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/nixos/hosts/cloud-pc.nix b/nixos/hosts/cloud-pc.nix index 1a5a5f3..4cd22b4 100644 --- a/nixos/hosts/cloud-pc.nix +++ b/nixos/hosts/cloud-pc.nix @@ -10,6 +10,24 @@ networking.hostName = "cloud-pc"; + fileSystems."/opt/data" = { + device = "/dev/disk/by-uuid/ae278333-4116-4225-9b95-595496fadd26"; + fsType = "ext4"; + options = [ "nofail" ]; + }; + + fileSystems."/opt/samba" = { + device = "/dev/disk/by-uuid/89024d30-1ab6-4b2e-b23b-62837455b24a"; + fsType = "ext4"; + options = [ "nofail" ]; + }; + + fileSystems."/mnt/backup" = { + device = "/dev/disk/by-uuid/940a9a4e-10cf-4380-9d22-a71549066561"; + fsType = "ext4"; + options = [ "nofail" ]; + }; + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -27,5 +45,5 @@ ]; }; - system.stateVersion = "26.05"; + system.stateVersion = "25.11"; }