22 lines
388 B
Nix
22 lines
388 B
Nix
{ lib, ... }: {
|
|
imports = [
|
|
./Tablet.nix
|
|
];
|
|
|
|
# Disable flatpak install.
|
|
systemd.services.flatpakinstall.wantedBy = lib.mkForce [ ];
|
|
|
|
# Filesystems.
|
|
fileSystems."/storage/hot" = {
|
|
device = "/dev/storage/hot";
|
|
fsType = "ext4";
|
|
options = [ "nofail" ];
|
|
};
|
|
|
|
fileSystems."/storage/cold" = {
|
|
device = "/dev/storage/cold";
|
|
fsType = "ext4";
|
|
options = [ "nofail" ];
|
|
};
|
|
}
|