From c164d5597b126654f683c0e0974d5ecf36e0d14e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 15 Aug 2022 15:15:47 +0200 Subject: nixos: move C develop to just devShells --- nixos/machine/gaspode.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 nixos/machine/gaspode.nix (limited to 'nixos/machine') diff --git a/nixos/machine/gaspode.nix b/nixos/machine/gaspode.nix new file mode 100644 index 0000000..82762f1 --- /dev/null +++ b/nixos/machine/gaspode.nix @@ -0,0 +1,25 @@ +{ config, lib, pkgs, ... }: + +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"; + }; + }; + + }; + +} -- cgit v1.2.3