Gambling markets have conveniently found a stance that allows them to continue to profit from death and war.
| Blog | https://justinas.org |
| GitHub | https://github.com/justinas |
| Podcast (LT) | https://corded.lt |
| Professional nouns | he / they |
| Blog | https://justinas.org |
| GitHub | https://github.com/justinas |
| Podcast (LT) | https://corded.lt |
| Professional nouns | he / they |
Gambling markets have conveniently found a stance that allows them to continue to profit from death and war.
> I can use the configuration.nix only for system configuration and flakes for package installation & configuration right?
A flake is a container, it can't really "do things" by itself. If you want to define packages to be installed, or configure things, that must still go inside a `nixosConfigurations` (or `homeConfigurations` etc.) inside your flake.
> Do I have also the ability to split the flake.nix into multiple files?
Yes! Nix supports splitting your code into multiple files, whether using flakes or not. You can import Nix code using import [1], or when talking NixOS configuration, it has its own module mechanism via "imports" [2].
[1]: https://nix.dev/tutorials/nix-language.html#import
[2]: https://nixos.org/manual/nixos/stable/#sec-modularity
@eschguy yes, that option can only give you the path where the decrypted file will be stored, not the file's contents. That's by design, otherwise secrets would leak to the Nix store and the usage of sops-nix would be pointless.
Try setting `services.lubelogger.environmentFile` instead.