JumpIn-Git
JumpIn-Git
> Hey, > > I have raised a PR here - [#807](https://github.com/NotAShelf/nvf/pull/807) > > once this is merged, > > you could use > > ``` > { > config.vim.languages.fish...
> do you use the ppm image format? that should be faster (see README). > > Apart from that, we might need to run the initial image reading from stdin...
> ppm is faster for loading, because it's uncompressed. png is using zip inside which is single threaded and may run a tiny bit slower. > > As output format...
> I did some benchmarks w.r.t. intra-app startup and there the major factor was png decoding. > > You claim that most of the startup time is loading of libadwaita....
> Please run the command with `--verbose` and paste the output. sorry for the late response, (this was run in fakeroot btw) ``` ~ # ❯ nh clean all --verbose...
you can also make a home-manager module containing the user you want (`modules/home/jzbor.nix`), and import it on all your host's `users/jzbor.nix`
idk how i just though of this, but just do this with your outputs: ``` outputs = { inputs, self, cf, blueprint, }: blueprint {inherit inputs;} // (inputs.cf.lib.flakeForDefaultSystems (system: {...
> I think something like `/users//home-configuration.nix` makes the most sense since a 'users' folder is already common for storing non-host-specific user data (auth keys, secrets, etc). > > I've been...
> > What would happen if you were to move all the files in the blueprint's structure, is there something missing? > > Could you clarify what you mean? https://github.com/numtide/blueprint/issues/76#issuecomment-2668817970
this isnt needed, see my flake: ``` outputs = { inputs, blueprint, }: blueprint {inherit inputs;} // { overlays = import ./overlays {inherit inputs;}; }; ```