!oNSIfazDqEcwhcOjSL:matrix.org

disko

353 Members
disko - declarative disk partitioning - https://github.com/nix-community/disko88 Servers

Load older messages


SenderMessageTime
18 Dec 2025
@disco_stick:matrix.orgShop Smart: Shop S-Mart changed their display name from team sama to ๐Ÿ’–Samโค๏ธโ€๐Ÿ”ฅAltman๐Ÿ’–.20:23:23
19 Dec 2025
@disco_stick:matrix.orgShop Smart: Shop S-Mart changed their display name from ๐Ÿ’–Samโค๏ธโ€๐Ÿ”ฅAltman๐Ÿ’– to nope.03:30:49
21 Dec 2025
@chris_god:trafkin.comm0lok๐Ÿ‘‹ is someone using bcachefs multidevice on a production device (I'm trying to use the disko example) 03:30:13
@disco_stick:matrix.orgShop Smart: Shop S-Mart changed their display name from nope to food style edible product.16:45:22
22 Dec 2025
@cinerealkiara:matrix.org@cinerealkiara:matrix.org left the room.11:02:18
24 Dec 2025
@pltrz_:matrix.orgpltrz joined the room.12:47:07
@sebastian:srx.digitalcrstl changed their profile picture.21:33:24
@sebastian:srx.digitalcrstl changed their display name from sebastian to crstl.21:33:36
26 Dec 2025
@zimward:zimward.moezimward @ 39c3 โ˜Ž๏ธ 75947 changed their display name from zimward to zimward @ 39c3.15:49:06
@jappie:jappie.devjasper @ 39c3 โ˜Ž๏ธ 62749 changed their display name from jappie to jappie @ 39c3.15:49:41
27 Dec 2025
@rprice7443:matrix.orgrprice7443 joined the room.08:09:23
@zimward:zimward.moezimward @ 39c3 โ˜Ž๏ธ 75947 changed their display name from zimward @ 39c3 to zimward @ 39c3 โ˜Ž๏ธ 75947.10:43:51
@pinpox:matrix.orgpinpox [DECT: 7479] changed their display name from pinpox to pinpox [DECT: 7479].12:01:35
@jappie:jappie.devjasper @ 39c3 โ˜Ž๏ธ 62749 changed their display name from jappie @ 39c3 to jasper @ 39c3 โ˜Ž๏ธ 62749.13:30:50
@matthewcroughan:defenestrate.itmatthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192) changed their display name from matthewcroughan to matthewcroughan @ 39c3 (DECT 94667 or 97340 or 67192).14:35:24
@nagasaki:matrix.pyxiss.deNagasaki

Hello, I don't really get why my config is not working and I don't understand why the errors appears. I used to make my VMs with NixOS 24.05 (apparently old) and wanted to update to 25.11.
I get this error:

Cannot build '/nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/rfy659qwndivmbfnz9xqidjglj5xkq3a-kernel-modules-shrunk
       Last 2 log lines:
       > Required modules: 9p 9pnet_virtio virtiofs virtio_pci virtio_blk virtio_balloon virtio_rng
       > Can not derive a closure of kernel modules because no modules were provided.
       For full logs, run:
         nix log /nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv```
But my hardware-configuration.nix does provide some the modules. And even if I insert the named one, it does not change ๐Ÿค”
```nix

{ config, lib, pkgs, modulesPath, ... }:

{
  imports =
    [ (modulesPath + "/profiles/qemu-guest.nix")
    ./disk.nix
    ];
  boot = {
    initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sr_mod" "sd_mod"];
    initrd.kernelModules = [ ];
    kernelModules = [ "kvm-intel" ];
    kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
    extraModulePackages = [ ];    
    
    loader.grub.efiSupport = lib.mkDefault true;
    loader.grub.efiInstallAsRemovable = lib.mkDefault true;    
    
  };
  swapDevices = [ ];
  networking.useDHCP = lib.mkDefault true;

  nix.settings.trusted-users = [ "admin"];
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}

14:54:53
@nagasaki:matrix.pyxiss.deNagasaki *

Hello, I don't really get why my config is not working and I don't understand why the errors appears. I used to make my VMs with NixOS 24.05 (apparently old) and wanted to update to 25.11.
I get this error:

Cannot build '/nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/rfy659qwndivmbfnz9xqidjglj5xkq3a-kernel-modules-shrunk
       Last 2 log lines:
       > Required modules: 9p 9pnet_virtio virtiofs virtio_pci virtio_blk virtio_balloon virtio_rng
       > Can not derive a closure of kernel modules because no modules were provided.
       For full logs, run:
         nix log /nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv
```
But my hardware-configuration.nix does provide some the modules. And even if I insert the named one, it does not change ๐Ÿค”
```nix

{ config, lib, pkgs, modulesPath, ... }:

{
  imports =
    [ (modulesPath + "/profiles/qemu-guest.nix")
    ./disk.nix
    ];
  boot = {
    initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sr_mod" "sd_mod"];
    initrd.kernelModules = [ ];
    kernelModules = [ "kvm-intel" ];
    kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
    extraModulePackages = [ ];    
    
    loader.grub.efiSupport = lib.mkDefault true;
    loader.grub.efiInstallAsRemovable = lib.mkDefault true;    
    
  };
  swapDevices = [ ];
  networking.useDHCP = lib.mkDefault true;

  nix.settings.trusted-users = [ "admin"];
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}

14:55:08
@nagasaki:matrix.pyxiss.deNagasaki *

Hello, I don't really get why my config is not working and I don't understand why the errors appears. I used to make my VMs with NixOS 24.05 (apparently old) and wanted to update to 25.11.
I get this error:

Cannot build '/nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/rfy659qwndivmbfnz9xqidjglj5xkq3a-kernel-modules-shrunk
       Last 2 log lines:
       > Required modules: 9p 9pnet_virtio virtiofs virtio_pci virtio_blk virtio_balloon virtio_rng
       > Can not derive a closure of kernel modules because no modules were provided.
       For full logs, run:
         nix log /nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv
```

But my hardware-configuration.nix does provide some the modules. And even if I insert the named one, it does not change ๐Ÿค”
```nix

{ config, lib, pkgs, modulesPath, ... }:

{
  imports =
    [ (modulesPath + "/profiles/qemu-guest.nix")
    ./disk.nix
    ];
  boot = {
    initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sr_mod" "sd_mod"];
    initrd.kernelModules = [ ];
    kernelModules = [ "kvm-intel" ];
    kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
    extraModulePackages = [ ];    
    
    loader.grub.efiSupport = lib.mkDefault true;
    loader.grub.efiInstallAsRemovable = lib.mkDefault true;    
    
  };
  swapDevices = [ ];
  networking.useDHCP = lib.mkDefault true;

  nix.settings.trusted-users = [ "admin"];
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}

14:55:22
@nagasaki:matrix.pyxiss.deNagasaki *

Hello, I don't really get why my config is not working and I don't understand why the errors appears. I used to make my VMs with NixOS 24.05 (apparently old) and wanted to update to 25.11.
I get this error:

Cannot build '/nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/rfy659qwndivmbfnz9xqidjglj5xkq3a-kernel-modules-shrunk
       Last 2 log lines:
       > Required modules: 9p 9pnet_virtio virtiofs virtio_pci virtio_blk virtio_balloon virtio_rng
       > Can not derive a closure of kernel modules because no modules were provided.
       For full logs, run:
         nix log /nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv

But my hardware-configuration.nix does provide some the modules. And even if I insert the named one, it does not change ๐Ÿค”


{ config, lib, pkgs, modulesPath, ... }:

{
  imports =
    [ (modulesPath + "/profiles/qemu-guest.nix")
    ./disk.nix
    ];
  boot = {
    initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sr_mod" "sd_mod"];
    initrd.kernelModules = [ ];
    kernelModules = [ "kvm-intel" ];
    kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
    extraModulePackages = [ ];    
    
    loader.grub.efiSupport = lib.mkDefault true;
    loader.grub.efiInstallAsRemovable = lib.mkDefault true;    
    
  };
  swapDevices = [ ];
  networking.useDHCP = lib.mkDefault true;

  nix.settings.trusted-users = [ "admin"];
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}

14:55:32
@nagasaki:matrix.pyxiss.deNagasaki *

Hello, I don't really get why my config is not working and I don't understand why the errors appears. I used to make my VMs with NixOS 24.05 (apparently old) and wanted to update to 25.11.
I get this error:

Cannot build '/nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv'.
       Reason: builder failed with exit code 1.
       Output paths:
         /nix/store/rfy659qwndivmbfnz9xqidjglj5xkq3a-kernel-modules-shrunk
       Last 2 log lines:
       > Required modules: 9p 9pnet_virtio virtiofs virtio_pci virtio_blk virtio_balloon virtio_rng
       > Can not derive a closure of kernel modules because no modules were provided.
       For full logs, run:
         nix log /nix/store/61hn1fcn4y43gsgvikkfg2ycqx7mk0l2-kernel-modules-shrunk.drv

But my hardware-configuration.nix does provide some the modules. And even if I insert the named one, it does not change ๐Ÿค”


{ config, lib, pkgs, modulesPath, ... }:

{
  imports =
    [ (modulesPath + "/profiles/qemu-guest.nix")
    ./disk.nix
    ];
  boot = {
    initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sr_mod" "sd_mod"];
    initrd.kernelModules = [ ];
    kernelModules = [ "kvm-intel" ];
    kernelPackages = pkgs.linuxKernel.packages.linux_6_12;
    extraModulePackages = [ ];    
    
    loader.grub.efiSupport = lib.mkDefault true;
    loader.grub.efiInstallAsRemovable = lib.mkDefault true;    
    
  };
  swapDevices = [ ];
  networking.useDHCP = lib.mkDefault true;

  nix.settings.trusted-users = [ "admin"];
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}

I can still create VMs with the exact same configuration, but only changing the nixpkgs version in system.stateVersion and in the flake input url for the packages.

14:56:44
@not-jack:matrix.orgnot-jack hello, can someone explain to me why a zfs dataset has: type = "gpt"? 16:34:13
@lassulus:lassul.uslassulusit's the partition table below the zpool16:53:41
28 Dec 2025
@ed209a:matrix.orged209 how do I specify a branch in this command? nix run 'github:nix-community/disko/latest#disko-install' -- --flake git+https://git@my.repo/nix-config#hostname 13:52:29
@ed209a:matrix.orged209I'm using a main branch and it seems to only check master13:52:40
@ed209a:matrix.orged209if it was github, I'd know how13:52:57
@ed209a:matrix.orged209lol i see the problem lol, i've got the ssh syntax but trying https13:55:35
@ed209a:matrix.orged209oof size large13:55:38
@disco_stick:matrix.orgShop Smart: Shop S-Mart changed their display name from food style edible product to Shop Smart: Shop S-Mart.17:36:12
@azahi:azahi.cc@azahi:azahi.cc left the room.23:08:03
30 Dec 2025
@vicnotor:matrix.orgvicgeentor changed their display name from vicnotor to vicgeentor.11:20:11

There are no newer messages yet.


Back to Room ListRoom Version: 10