Dmitriy Pleshevskiy
b703b69513
- make: fix rollback command - flake.lock: add disko module. - flake.lock: add impermanence module. - disko: add configuration to create luks-btrfs schema. - host/asus: add new filesystem configuration (luks-btrfs) - host/asus: mount user from old partition. - host/asus: add impermanence module to store system configuration.
22 lines
446 B
Nix
22 lines
446 B
Nix
{ ... }:
|
|
|
|
{
|
|
boot.kernelModules = [
|
|
# Enable containers
|
|
# See: https://github.com/NixOS/nixpkgs/issues/38676
|
|
"veth"
|
|
];
|
|
|
|
# Enable keyboard on the boot
|
|
boot.initrd.availableKernelModules = [ "hid_asus" ];
|
|
|
|
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"
|
|
];
|
|
};
|
|
}
|