eulalia
eulalia
Re: #4538, wpaperd needs something to run it after being enabled. This commit adds a systemd service to run it, and accordingly moves it to services.wpaperd. In addition, the existing...
In my flake, I define a custom home-manager option that lets users decide whether they want niri configured for their environment: `eula.modules.niri.enable`. I then have a line in my nixos...
Using NixOS 25.05 with kernel 6.13.0, running niri v25.01. xwayland-satellite runs fine (I've used it before), and it happily renders the vmware-horizon-client window. However, when I ask Horizon to connect...
This just adds the color purple. I like purple. I used a color palette generator to make it so that the colors were in line with the existing options -...
I've managed to pare my config down to the following minimal setup: ```nix sops.defaultSopsFile = inputs.self.outPath + "/secrets/secrets.yaml"; sops.age.sshKeyPaths = ["/home/eulalia/.ssh/id_ed25519"]; sops.secrets."passwords/eulalia".neededForUsers = true; ``` Then, in my secrets file...
Currently, LoadOperation and StoreOperation expect the instructions to just be "load" and "store", respectively. This is not possible in current MLIR - indeed, I don't know if it was ever...
Hello, I'm trying to do some operations on the MLIR generated for a simple C function: ```c void test(int *x, int *y) { *x = *y + 2; } ```...