aboutsummaryrefslogtreecommitdiff
path: root/nixos/machine/spt-mpd.nix
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-12-20 21:47:46 +0100
committerKarel Kočí <cynerd@email.cz>2022-12-20 21:47:46 +0100
commite09a2f8a23161e52859754e5cf874ec4099a2008 (patch)
tree02601d6f9dee46d6ba92bae44f6e72a1b5f42f0c /nixos/machine/spt-mpd.nix
parenta6e7ea6b2d0bca5ae7ef849530905a164bca2b0e (diff)
downloadnixos-personal-e09a2f8a23161e52859754e5cf874ec4099a2008.tar.gz
nixos-personal-e09a2f8a23161e52859754e5cf874ec4099a2008.tar.bz2
nixos-personal-e09a2f8a23161e52859754e5cf874ec4099a2008.zip
nixos: update some machines configuration
Diffstat (limited to 'nixos/machine/spt-mpd.nix')
-rw-r--r--nixos/machine/spt-mpd.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/nixos/machine/spt-mpd.nix b/nixos/machine/spt-mpd.nix
index 3e103e1..f32c1db 100644
--- a/nixos/machine/spt-mpd.nix
+++ b/nixos/machine/spt-mpd.nix
@@ -7,15 +7,9 @@ with lib;
config = {
fileSystems = {
"/" = {
- device = "/dev/mmcblk0p2";
- options = ["compress=lzo" "subvol=@nix"];
- };
- "/home" = {
- device = "/dev/mmcblk0p2";
- options = ["compress=lzo" "subvol=@home"];
- };
- "/boot" = {
device = "/dev/mmcblk0p1";
+ fsType = "btrfs";
+ options = ["compress=lzo"];
};
};
};