diff options
author | Karel Kočí <cynerd@email.cz> | 2022-08-15 15:15:47 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-08-15 15:15:47 +0200 |
commit | c164d5597b126654f683c0e0974d5ecf36e0d14e (patch) | |
tree | b811e65cc5d8b5a0d3662c1bee956d9857a52c97 /nixos/machine | |
parent | 977a2e976ac87a4e994e33c0ccea51cbef3bc30d (diff) | |
download | nixos-personal-c164d5597b126654f683c0e0974d5ecf36e0d14e.tar.gz nixos-personal-c164d5597b126654f683c0e0974d5ecf36e0d14e.tar.bz2 nixos-personal-c164d5597b126654f683c0e0974d5ecf36e0d14e.zip |
nixos: move C develop to just devShells
Diffstat (limited to 'nixos/machine')
-rw-r--r-- | nixos/machine/gaspode.nix | 25 |
1 files changed, 25 insertions, 0 deletions
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"; + }; + }; + + }; + +} |