Minor updates

This commit is contained in:
Vivian 2022-06-12 12:25:46 +02:00
parent b691e44095
commit 65751c7323
10 changed files with 41 additions and 76 deletions

View file

@ -5,9 +5,14 @@
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub = {
enable = true;
version = 2;
device = "/dev/sda";
};
boot.kernel.sysctl."fs.inotify.max_user_instances" = 2147483647; # INT_MAX, dynamically limited based on available memory
boot.kernel.sysctl."fs.inotify.max_user_watches" = 1048576;
networking.hostName = "k3s-node1";