Boring NixOS Modules

Sane NixOS configuration defaults

How to use:
1. cd into your NixOS configuration directory
2. (optional) Create a modules folder: mkdir modules; cd modules
3. Fetch a module file: wget boringnix.store/nextcloud
4. Add it to your NixOS configuration flake:
nixosConfigurations.hostname = nixpkgs.lib.nixosSystem {
    modules = [
        # Paste module here:
        ./nextcloud.nix
        # or
        ./modules/nextcloud.nix
        ...
    ];
    ...
}
View module list