From 2b10a467c18f85b0e00b978b943e0efdbcee74bd Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 16 Jan 2025 05:35:13 -0800 Subject: add kubo ipfs --- nix/modules/sda-simple.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'nix/modules/sda-simple.nix') diff --git a/nix/modules/sda-simple.nix b/nix/modules/sda-simple.nix index 1513d82..fdf6556 100644 --- a/nix/modules/sda-simple.nix +++ b/nix/modules/sda-simple.nix @@ -1,16 +1,8 @@ -{ config, lib, ... }: { - options.monorepo.vars.disk = lib.mkOption { - type = lib.types.str; - default = "/dev/sda"; - example = "/dev/nvme0n1"; - description = "Disk to install NixOS to"; - }; - - config.disko.devices = { + disko.devices = { disk = { my-disk = { - device = config.monorepo.vars.disk; + device = "/dev/sda"; type = "disk"; content = { type = "gpt"; -- cgit