nix/host/dasha/Configuration.nix

24 lines
402 B
Nix
Raw Normal View History

2024-03-21 16:58:49 +03:00
{ lib, pkgs, ... }: {
imports = [
./Tablet.nix
];
2024-03-21 16:58:49 +03:00
environment.systemPackages = with pkgs; [
networkmanager-l2tp
gnome.networkmanager-l2tp
];
# Filesystems.
fileSystems."/storage/hot" = {
device = "/dev/storage/hot";
fsType = "ext4";
options = [ "nofail" ];
};
fileSystems."/storage/cold" = {
device = "/dev/storage/cold";
fsType = "ext4";
options = [ "nofail" ];
};
}