diff options
author | Azat Bahawi <azat@bahawi.net> | 2022-08-20 00:23:51 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-08-20 00:23:51 +0300 |
commit | e7941cee341350e2b59b33abef99dfc1c36c2ea9 (patch) | |
tree | c6fb9caae84c39b714e0267d83b0d98d849ad481 /configurations/melian/default.nix | |
parent | 2022-08-17 (diff) |
2022-08-20
Diffstat (limited to '')
-rw-r--r-- | configurations/melian/default.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/configurations/melian/default.nix b/configurations/melian/default.nix index 6703d0f..710f26c 100644 --- a/configurations/melian/default.nix +++ b/configurations/melian/default.nix @@ -30,6 +30,7 @@ with lib; { games = { lutris.enable = true; + minecraft.client.enable = true; steam.enable = true; }; @@ -157,16 +158,16 @@ with lib; { }; fileSystems = { + "/boot" = { + device = "/dev/disk/by-uuid/1083-C8A0"; + fsType = "vfat"; + }; + "/" = { device = "/dev/disk/by-uuid/bb8b09dc-cc67-47e5-8280-532b17a9e62a"; fsType = "xfs"; options = ["noatime"]; }; - - "/boot" = { - device = "/dev/disk/by-uuid/1083-C8A0"; - fsType = "vfat"; - }; }; # NOTE This will make hibernation extremely hard if on an encrypted partition. |