aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/spt-mpd.nix
blob: f32c1db839e6bab4b37b5d0a9f083afb02fac1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }:

with lib;

{

  config = {
    fileSystems = {
      "/" = {
        device = "/dev/mmcblk0p1";
        fsType = "btrfs";
        options = ["compress=lzo"];
      };
    };
  };

}