You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sandro - 1024d82a53
hedgedoc: add
2 days ago
lib Format 4 months ago
modules hedgedoc: add 2 days ago
LICENSE Initial commit 6 months ago
README.md Update readme 5 months ago
flake.lock flake.lock: Update 3 months ago
flake.nix flake: filter source directory to only contain directories and nix files 2 months ago

README.md

nixos-modules

Opinionated shared NixOS configurations.

Usage

Add or merge the following settings to your flake.nix:

{
  inputs = {
    nixos-modules.url = "github:SuperSandro2000/nixos-modules";
  };

  outputs = { nixos-modules }: {
    nixosConfigurations.HOSTNAME = {
      modules = [
       nixos-modules.nixosModule
    ];
  };
}

Design

  • Modules should never change the configuration without setting an option
  • Unless the global overwrite opinionatedDefaults = true is set which activates most settings.

Similar projects