Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- disko.devices = {
- disk = {
- my-disk = {
- device = "/dev/sda";
- type = "disk";
- content = {
- type = "gpt";
- partitions = {
- ESP = {
- type = "EF00";
- size = "512M";
- content = {
- type = "filesystem";
- format = "vfat";
- mountpoint = "/boot/efi";
- };
- };
- swap = {
- size = "8G";
- content = {
- type = "swap";
- resumeDevice = true;
- };
- };
- root = {
- size = "100%";
- content = {
- type = "btrfs";
- extraArgs = [ "-f" ];
- subvolumes = {
- "/rootfs" = {
- mountpoint = "/";
- };
- "/home" = {
- mountOptions = [ "compress=zstd" ];
- mountpoint = "/home";
- };
- "/nix" = {
- mountOptions = [ "compress=zstd" "noatime" ];
- mountpoint = "/nix";
- };
- };
- mountpoint = "/";
- };
- };
- };
- };
- };
- };
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment