mirror incase github.com is down
Go to file
Sandro - 4ed22f5a7d
Sort, cleanup, add color highlighting
2023-12-23 00:31:31 +01:00
lib ldap: add new option to generate group filter in search filters 2023-07-02 02:36:05 +02:00
modules Sort, cleanup, add color highlighting 2023-12-23 00:31:31 +01:00
LICENSE Initial commit 2022-12-20 01:48:50 +01:00
README.md Cleanup readme 2023-12-20 02:09:57 +01:00
flake.lock Bump 2023-12-04 01:25:43 +01:00
flake.nix flake: filter source directory to only contain directories and nix files 2023-04-04 22:49:47 +02:00

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