summaryrefslogtreecommitdiff
path: root/hosts/laptop/disko.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 23:52:35 +0100
committeradikro <adikro@disroot.org>2025-12-20 23:52:35 +0100
commitf0acd5c32d4e46cd3ad6fc1b848e9bf325a6d3f5 (patch)
tree918c195140fd06a1bc36030c0c81e68b7739e377 /hosts/laptop/disko.nix
parent9b3418c0c0ae4c945c51430fd59956e7ad8bd90e (diff)
installed nixos on the laptop host, updated disko
Diffstat (limited to 'hosts/laptop/disko.nix')
-rw-r--r--hosts/laptop/disko.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/hosts/laptop/disko.nix b/hosts/laptop/disko.nix
index 54b30a1..6b9951a 100644
--- a/hosts/laptop/disko.nix
+++ b/hosts/laptop/disko.nix
@@ -1,5 +1,6 @@
{
disko.devices = {
+ disk = {
main = {
type = "disk";
device = "/dev/nvme0n1";
@@ -13,12 +14,12 @@
content = {
type = "filesystem";
format = "vfat";
- mountpoint = "/boot/efi";
+ mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
- root = {
- size = "100%";
+ nixos = {
+ size = "200G";
content = {
type = "btrfs";
extraArgs = [ "-f" ];
@@ -42,8 +43,12 @@
};
};
};
+ fedora = {
+ size = "100%";
+ };
};
};
};
};
+ };
}