nix/host/dasha/Configuration.nix

22 lines
388 B
Nix
Raw Normal View History

{ 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" ];
};
}