We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7e958b commit 2a22c42Copy full SHA for 2a22c42
README.md
@@ -0,0 +1,10 @@
1
+# Install
2
+
3
+## Server
4
5
+Limit the size of /tmp and /var/cache via
6
7
+'''
8
+btrfs qgroup limit 30G /btrfs/tmp
9
+btrfs qgroup limit 30G /btrfs/cache
10
server/disko.nix
@@ -29,6 +29,9 @@ in
29
type = "btrfs";
30
extraArgs = [ "-f" ];
31
subvolumes = {
32
+ "/" = {
33
+ mountpoint = "/btrfs";
34
+ };
35
"/nix" = {
36
mountpoint = "/nix";
37
mountOptions = [
@@ -39,6 +42,9 @@ in
39
42
"/tmp" = {
40
43
mountpoint = "/tmp";
41
44
};
45
+ "/cache" = {
46
+ mountpoint = "/var/cache";
47
48
"/permament" = {
49
mountpoint = "/permament";
50
0 commit comments