| 6 Jan 2026 |
| eyduh (she/they) changed their profile picture. | 18:20:24 |
| eyduh (she/they) changed their profile picture. | 18:25:14 |
lillecarl | [I] lillecarl@hetztop ~/C/hetzkube> nix copy --from local?read-only=true --to ssh-ng://nix@nixbuild.lillecarl.com?port=2222 /nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json -vvvvvvvvvv
querying info about missing paths...
checking substituter 'https://cache.nixos.org' for path '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json'
don't know how to build these paths:
/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json
substitution of '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json': created
entered goal loop
substitution of '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json': init
Read-only store doesn't support creating lock files for temp roots, but nothing can be deleted anyways.
substitution of '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json': trying next substituter
substitution of '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json': trying next substituter
path '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json' is required, but there is no substituter that can build it
substitution of '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json': done
substitution of '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json': goal destroyed
error: path '/nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json' is required, but there is no substituter that can build it
[I] lillecarl@hetztop ~/C/hetzkube [1]> ls --icon-theme unicode /nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json
📄 /nix/store/h7pbm9b1772b0f15sbr4anv70g2yc4ic-manifest.json
This is most curious
| 23:30:02 |
| 7 Jan 2026 |
minman | I have question about overriding nix files. I want to override the sdImage.populateFirmwareCommands from the imported <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>. What would be the best way to do this?
https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/sd-card/sd-image-aarch64.nix | 14:07:28 |
minman | * I have question about overriding nix files. I want to override the sdImage.populateFirmwareCommands from the imported <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>. What would be the best way to do this?
https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/sd-card/sd-image-aarch64.nix
| 14:07:46 |
minman | * I have question about overriding nix files. I want to override the sdImage.populateFirmwareCommands from the imported <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>. What would be the best way to do this?
https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/sd-card/sd-image-aarch64.nix
| 14:08:02 |
minman | * I have question about overriding nix files. I want to override the sdImage.populateFirmwareCommands from the imported <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>. What would be the best way to do this?
For now I have something like this:
let
sd-image = import <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix> { inherit pkgs config lib; };
in
{
imports = [
sd-image
./pi-unifi.nix
];
nixpkgs.config.packageOverrides = pkgs: {
sdImage = sd-image.sdImage.override {
populateFirmwareCommands = "overrideCommands"
}
}
https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/sd-card/sd-image-aarch64.nix
| 14:26:45 |
minman | * I have question about overriding nix files. I want to override the sdImage.populateFirmwareCommands from the imported <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>. What would be the best way to do this?
For now I have something like this:
let
sd-image = import <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix> { inherit pkgs config lib; };
in
{
imports = [
sd-image
];
nixpkgs.config.packageOverrides = pkgs: {
sdImage = sd-image.sdImage.override {
populateFirmwareCommands = "overrideCommands"
}
}
https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/sd-card/sd-image-aarch64.nix
| 14:27:25 |
minman | * I have question about overriding nix files. I want to override the sdImage.populateFirmwareCommands from the imported <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix>. What would be the best way to do this?
For now I have something like this, it builds but the command is not overridden.
let
sd-image = import <nixpkgs/nixos/modules/installer/sd-card/sd-image-aarch64.nix> { inherit pkgs config lib; };
in
{
imports = [
sd-image
];
nixpkgs.config.packageOverrides = pkgs: {
sdImage = sd-image.sdImage.override {
populateFirmwareCommands = "overrideCommands"
}
}
https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/sd-card/sd-image-aarch64.nix
| 15:04:38 |
| 8 Jan 2026 |
| dahs joined the room. | 02:41:45 |
Sofie 🏳️⚧️ (she/her) | Is there a Lix standalone rootless installer (similar for Nixsa for Nix) for Lix? | 09:43:55 |
K900 | I'm pretty sure a static binary can just work with a chroot store? | 09:47:40 |
Sofie 🏳️⚧️ (she/her) | I could try | 10:02:55 |
piegames | https://github.com/andir/npins/blob/master/src/default.nix#L232-L238 do we already have an issue for this somewhere? | 11:23:47 |
piegames | Or generally some issues on tryEval madness | 11:23:55 |
raitobezarius | i don't get the problem you are trying to solve just by reading the comment | 11:46:17 |
piegames | the other half of the mess is here https://github.com/andir/npins/blob/master/src/default.nix#L12-L20 | 11:47:29 |
Sofie 🏳️⚧️ (she/her) | Does Lix ship nix-store.pc? | 13:21:46 |
K900 | It should be renamed to lix-store because it's not API compatible with cppnix | 13:24:26 |
| paper removed their profile picture. | 14:33:38 |
| TGRCDev changed their display name from TGRCDev to Flotsam. | 16:28:30 |
| TGRCDev changed their display name from Flotsam to TGRCDev. | 16:31:43 |
| νεολαμπής [NSAolampis] changed their profile picture. | 17:27:13 |
| νεολαμπής [NSAolampis] changed their profile picture. | 17:59:09 |
| holly [she/it] 🏳️⚧️ changed their profile picture. | 18:29:18 |
| holly [she/it] 🏳️⚧️ changed their profile picture. | 18:30:52 |
| Spectral (he/him) changed their profile picture. | 18:49:01 |
| Evie (they/she) joined the room. | 19:56:48 |
guiniol | I seem to have borked my system enough that systemd isn't responding via DBUS or something and can't nixos-rebuild switch anymore. So my plan is to boot of a live USB and use nixos-enter to get back into the system with a working systemd. Is there an option to nixos-rebuild switch that will let it rebuild from scratch? Ie, I am fine using the remote cache but I want it to overwrite all the local files that it would normally re-use. Is there an option for that? I don't see it in the man page. | 21:43:10 |
guiniol | oh | 21:45:06 |