From 749b5986fab4c6c68ab80e081be0e05b5f3c9f95 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Thu, 15 Aug 2024 12:29:31 +0200 Subject: [PATCH] flake.nixosCfg.x13yz: add missing options for fileSystems --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 654d95e..044fcf4 100644 --- a/flake.nix +++ b/flake.nix @@ -80,11 +80,12 @@ fileSystems."/" = { device = "/dev/disk/by-uuid/c93557db-e7c5-46ef-9cd8-87eb7c5753dc"; fsType = "ext4"; + options = [ "relatime" "discard" ]; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/5F9A-9A2D"; fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; + options = [ "uid=0" "gid=0" "fmask=0077" "dmask=0077" ]; }; swapDevices = [{ device = "/dev/disk/by-uuid/8482463b-ceb3-40b3-abef-b49df2de88e5"; }]; system.stateVersion = "24.05";