SebastianStork

Results 8 comments of SebastianStork

So a more convenient way of doing this? ```nix (wrapper-manager.lib { inherit pkgs; modules = [ { wrappers.hello = { basePackage = pkgs.hello; flags = ["--help"]; }; } ]; }).config.wrappers.hello.wrapped...

Here is the output: ``` { "/nix/store/0acylkkqsd9q36gzdqwibc1337jhwfhd-NixOS.iso.drv": { "args": [ "-e", "/nix/store/v6x3cs394jgqfbi0a42pam708flxaphh-default-builder.sh" ], "builder": "/nix/store/i1x9sidnvhhbbha2zhgpxkhpysw6ajmr-bash-5.2p26/bin/bash", "env": { "__structuredAttrs": "", "buildCommand": "set -efu\ntarget=$(find '/nix/store/2y2fq0q6ij8c86mv10d6vhqvi8fnd08y-NixOS' -name '*.iso' -xtype f -print -quit)\nln -s...

``` /nix/store/2y2fq0q6ij8c86mv10d6vhqvi8fnd08y-NixOS /nix/store/2y2fq0q6ij8c86mv10d6vhqvi8fnd08y-NixOS/iso /nix/store/2y2fq0q6ij8c86mv10d6vhqvi8fnd08y-NixOS/iso/NixOS /nix/store/2y2fq0q6ij8c86mv10d6vhqvi8fnd08y-NixOS/nix-support /nix/store/2y2fq0q6ij8c86mv10d6vhqvi8fnd08y-NixOS/nix-support/system /nix/store/2y2fq0q6ij8c86mv10d6vhqvi8fnd08y-NixOS/nix-support/hydra-build-products ``` That seems totally fine to me. I get the same result when I do `nix run nixpkgs#nixos-generators -- --format iso --flake .#installer...

That's right. I tested it and it works fine.

@deemp I just tried what you described and got the same error. Can you see if I did something wrong? Otherwise I have to assume that this probably won't fix...

From what I have seen, the idiomatic way to make `/var/lib/crowdsec` and `/etc/crowdsec` accessible to the service, is to use the systemd service options `StateDirectory` and `ConfigurationDirectory`. This would replace...

People who use impermanence might appreciate `DynamicUser` being disabled (see https://github.com/nix-community/impermanence/issues/254). The things `DynamicUser` does behind the scenes, we already do explicitly (at least I think so? see https://unix.stackexchange.com/questions/635027/systemd-dynamicuser-vs-user)

> > People who use impermanence might appreciate DynamicUser being disabled (see [nix-community/impermanence#254](https://github.com/nix-community/impermanence/issues/254)). > > Hm... should I add an option where the user can enable/disable it or should I...