| 30 Nov 2025 |
bandithedoge | probably not | 15:50:44 |
bandithedoge | but we should definitely make that | 15:50:49 |
antifuchs | (tried piping it into cat to inform it that there's no terminal, a trick which sometimes works with other tools... but no. can't really find a flag that would enable wide printing either) | 16:09:56 |
raitobezarius | lillecarl you had fallback issues with Lix, can you reproduce this issue here: https://git.lix.systems/lix-project/lix/issues/339#issuecomment-15867 ? | 16:52:14 |
raitobezarius | or did you have a reproducer for fallback? | 16:52:18 |
raitobezarius | i have been looking at it without any success | 16:52:22 |
WeetHet | Once flakes are removed from the main tree, there still would be a nix-repl | 17:29:30 |
piegames | In reply to @weethet:catgirl.cloud Once flakes are removed from the main tree, there still would be a nix-repl That sounds wrong | 18:13:25 |
| Acid Bong joined the room. | 18:13:55 |
piegames | Like, some parts of the nix3 CLI require Flakes, but not the REPL AFAIK | 18:14:05 |
WeetHet | It uses flakes by default | 18:15:16 |
WeetHet | Also I thought that both flakes and nix3 CLI were gonna be moved to a separate module? | 18:16:05 |
Aijokey | configuration.nix - Main system configuration
============================================================================
{pkgs, ...}: {
imports = [
# Hardware
./hardware-configuration.nix
./hardware.nix
# System modules
./system/boot.nix
./system/locale.nix
./system/network.nix
# Services
./services.nix
# User configuration
./users.nix
# Applications and packages
./apps.nix
# Virtualization
./virtualization/kvm.nix
./virtualization/docker.nix
# Security & Pentesting
./athena.nix
# Customization
./customisation.nix
./llm.nix
];
system.stateVersion = "24.11";
nixpkgs.overlays = [
(final: prev: {
inherit
(prev.lixPackageSets.stable)
nixpkgs-review
nix-eval-jobs
nix-fast-build
colmena
;
})
];
nix.package = pkgs.lixPackageSets.stable.lix;
nixpkgs.config = {
allowUnfree = true;
segger-jlink.acceptLicense = true;
};
nix.settings.experimental-features = ["nix-command" "flakes"];
}
============================================================================
I installed lix but im not sure it do anything
| 18:17:41 |
WeetHet | Could you format your message properly please | 18:18:14 |
Aijokey | Redacted or Malformed Event | 18:18:41 |
Aijokey | Download configuration.nix | 18:18:51 |
Aijokey | I need diffrent matrix client maybe | 18:19:20 |
Blastboom Strice | Did you try putting it like this:
```nix
Text
``` | 18:20:48 |
Aijokey | I'm not good with matrix or markdown(?) | 18:21:38 |
Blastboom Strice | (Its a mix of both, cuz matrix clients use markdown, but might use slightly different implementations) | 18:22:15 |
Acid Bong | code blocks are the same, only lists, newlines and single `mono phrases` vary | 18:23:58 |
Acid Bong | anyway
do pipe operator implementations vary between Nix and Lix? i'm using Nix for everything on my system, but build my NixOS with Lix just for the sake of multiline output, and I don't wanna mess up with my (and/or someone else's) code | 18:26:08 |
WeetHet | I think the behaviour should be somewhat the same but the feature names are different | 18:26:59 |