aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/spt-mpd.nix
blob: ab960b5d3f2a3b54e223a77b3a8a980ecb5b56d8 (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"];
      };
    };
  };
}