2024-05-26 00:21:41 +03:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
boot.kernelModules = [
|
|
|
|
# Enable containers
|
|
|
|
# See: https://github.com/NixOS/nixpkgs/issues/38676
|
|
|
|
"veth"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Enable keyboard on the boot
|
|
|
|
boot.initrd.availableKernelModules = [ "hid_asus" ];
|
|
|
|
|
2024-06-05 01:44:54 +03:00
|
|
|
boot.blacklistedKernelModules = [ "nouveau" ];
|
|
|
|
|
2024-05-26 00:21:41 +03:00
|
|
|
fileSystems."/home/jan" = {
|
|
|
|
device = "/dev/disk/by-uuid/e6c0cbba-7000-4b1e-ba53-e7b5f8ae11c0";
|
|
|
|
fsType = "ext4";
|
|
|
|
options = [
|
|
|
|
"defaults"
|
|
|
|
"X-mount.subdir=home/jan"
|
|
|
|
"X-mount.mkdir"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|