!oNSIfazDqEcwhcOjSL:matrix.org

disko

361 Members
disko - declarative disk partitioning - https://github.com/nix-community/disko93 Servers

Load older messages


SenderMessageTime
23 Oct 2024
@hexa:lossy.networkhexahttps://openzfs.github.io/openzfs-docs/Performance%20and%20Tuning/Hardware.html#nvme-low-level-formatting14:06:50
@phaer:matrix.orgphaer

Disko evaluation seems to be broken on darwin. :/ Ran into this while testing my workshops example on darwin, but seems easy to reproduce. Just run nix flake check on darwin on diskos master (nix 2.18 and 2.23 both seem to show the same symptoms

❯ nix flake check
error:
       … while checking flake output 'nixosConfigurations'

         at /nix/store/3rj6vrlb75cd0fcrpv3ch84cqim94g87-source/flake.nix:75:7:

           74|
           75|       nixosConfigurations.testmachine = lib.nixosSystem {
             |       ^
           76|         system = "x86_64-linux";

       … while checking the NixOS configuration 'nixosConfigurations.testmachine'

         at /nix/store/3rj6vrlb75cd0fcrpv3ch84cqim94g87-source/flake.nix:75:7:

           74|
           75|       nixosConfigurations.testmachine = lib.nixosSystem {
             |       ^
           76|         system = "x86_64-linux";

       (stack trace truncated; use '--show-trace' to show the full trace)

       error: invalid regular expression ''

       at «none»:0: (source not available)
17:17:41
@phaer:matrix.orgphaerAh got it, will open a PR soon17:35:05
24 Oct 2024
@jopejoe1:matrix.orgjopejoe1 (4094@39c3) set a profile picture.07:34:49
25 Oct 2024
@renato-trevisan:matrix.orgRenato Trevisan joined the room.07:17:44
@systia:matrix.orgsystia joined the room.14:29:28
26 Oct 2024
@systia:matrix.orgsystia set a profile picture.04:22:52
@nam3l33ss:matrix.org·☽•Nameless☆•777 · ± changed their profile picture.07:04:18
@nam3l33ss:matrix.org·☽•Nameless☆•777 · ± changed their profile picture.07:08:03
@annaaurora:artemislena.euAnna AuroraI am generating NixOS images with disko and then flashing them onto a USB flash drive. When trying to boot from if though, it can't find the device specified via /dev/disk/by-partlabel by disko. When booted into my regular NixOS install the disks exist though under /dev/disk/by-partlabel if the USB flash drive is plugged in.15:46:16
@annaaurora:artemislena.euAnna Aurorathe nixos-anywhere vm test works however16:03:47
27 Oct 2024
@willbush:matrix.orgwillbush joined the room.00:05:43
@tanvir:hackliberty.org@tanvir:hackliberty.org changed their profile picture.18:36:13
28 Oct 2024
@sylvie:karp.lolSylvie (They/She) 🏳️‍⚧️ joined the room.12:21:21
@sylvie:karp.lolSylvie (They/She) 🏳️‍⚧️ok so I just deployed to a system that was setup with disko. flake based config, the module is enabled. disko config has changed, namely zfs datasets were added. nothing happened. no new datasets were created. is that by design?12:24:14
@sylvie:karp.lolSylvie (They/She) 🏳️‍⚧️what I had hoped to get out of disko was mostly declaratively defined zfs datasets, that I can just create by adding them to my config, but it seems I was wrong and that isn't a thing.12:28:13
@eyjhb:eyjhb.dkeyJhb
In reply to @sylvie:karp.lol
what I had hoped to get out of disko was mostly declaratively defined zfs datasets, that I can just create by adding them to my config, but it seems I was wrong and that isn't a thing.
It's only a think on initial setup AFAIK.
12:52:41
@eyjhb:eyjhb.dkeyJhb
In reply to @sylvie:karp.lol
what I had hoped to get out of disko was mostly declaratively defined zfs datasets, that I can just create by adding them to my config, but it seems I was wrong and that isn't a thing.
* It's only a thing on initial setup AFAIK.
12:52:47
@phaer:matrix.orgphaer

Yes, it's just for initial setup by default.

If you feel adventurous and have a tested backup of your data you can try rerunning the system.build.formatScript which should be idempotent but please review the script and don't blame us if it eats your data 😇

14:06:17
@sylvie:karp.lolSylvie (They/She) 🏳️‍⚧️I see I see. So unfortunately current disko isn't really what I wanted. 😅18:00:49
@sylvie:karp.lolSylvie (They/She) 🏳️‍⚧️Guess I'll have to eventually try writing my own module for this...18:01:02
29 Oct 2024
@phaer:matrix.orgphaerWould have been nice to see how it works for you and improve disko if/where needed with the lessons learned :)08:40:01
@phaer:matrix.orgphaer

If you want to start out with your own module and just need a solution specifically to add zfs datasets, it might be helpful to know about

nixosConfigurations.$hostname.config.disko.devices.zpool.$poolname.datasets."$dataset"._create which gives you the command diskos formatScript would use to create the dataset. That's already idempotent. Sylvie (she/it) 🏳️‍⚧️

08:42:14
31 Oct 2024
@tye-x:matrix.orgtye-x joined the room.20:24:08
@tye-x:matrix.orgtye-x
In reply to @phaer:matrix.org

Yes, it's just for initial setup by default.

If you feel adventurous and have a tested backup of your data you can try rerunning the system.build.formatScript which should be idempotent but please review the script and don't blame us if it eats your data 😇

do you have any timeline for when post-setup configuration might be ready?
20:26:04
@tye-x:matrix.orgtye-xor anyway i could help with this?20:26:15
1 Nov 2024
@deliganli:matrix.orgSait joined the room.07:37:51
@kamillaova:matrix.orgKamilla 'ova joined the room.14:01:59
@kamillaova:matrix.orgKamilla 'ova Is there a way to run a command after creating a filesystem with disko?
I want to run mkdir $target/{home,nix} to allow these directories binding to their real locations, e.g. something like this

fileSystems."/nix" = {
	device = "/persist/nix";
	fsType = "none";
	options = [ "bind" ];
	depends = [ "/persist" ];
	neededForBoot = true;
};
14:08:31
@kamillaova:matrix.orgKamilla 'ova Is there a way to run a command after creating a filesystem with disko?
I want to run mkdir $target/{home,nix} to allow these directories binding to their real locations, e.g. something like this

fileSystems."/nix" = {
	device = "/persist/nix";
	fsType = "none";
	options = [ "bind" ];
	depends = [ "/persist" ];
	neededForBoot = true;
};
14:08:36

Show newer messages


Back to Room ListRoom Version: 10