summaryrefslogtreecommitdiff
path: root/hosts/laptop/disko.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-21 18:18:06 +0100
committeradikro <adikro@disroot.org>2025-12-21 18:18:06 +0100
commitf0a94a72d7f191120682e97130f8277cd56f82d0 (patch)
tree87336475393bf5c8bcd85067a8e64440cf86f0e0 /hosts/laptop/disko.nix
parent022dc83ce35659caddaff1aa3d0d43ae1c8e4c0f (diff)
laptop commit
Diffstat (limited to 'hosts/laptop/disko.nix')
-rw-r--r--hosts/laptop/disko.nix54
1 files changed, 0 insertions, 54 deletions
diff --git a/hosts/laptop/disko.nix b/hosts/laptop/disko.nix
deleted file mode 100644
index 6b9951a..0000000
--- a/hosts/laptop/disko.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- disko.devices = {
- disk = {
- main = {
- type = "disk";
- device = "/dev/nvme0n1";
- content = {
- type = "gpt";
- partitions = {
- ESP = {
- size = "512M";
- type = "EF00";
- priority = 1;
- content = {
- type = "filesystem";
- format = "vfat";
- mountpoint = "/boot";
- mountOptions = [ "umask=0077" ];
- };
- };
- nixos = {
- size = "200G";
- content = {
- type = "btrfs";
- extraArgs = [ "-f" ];
- subvolumes = {
- "/root" = {
- mountpoint = "/";
- mountOptions = [ "noatime" ];
- };
- "/nix" = {
- mountpoint = "/nix";
- mountOptions = [ "compress=zstd:1" "noatime" ];
- };
- "/home" = {
- mountpoint = "/home";
- mountOptions = [ "noatime" ];
- };
- "/swap" = {
- mountpoint = "/.swapvol/swapfile";
- swap.swapfile.size = "8G";
- };
- };
- };
- };
- fedora = {
- size = "100%";
- };
- };
- };
- };
- };
- };
-}