mirror incase github.com is down
Go to file
Sandro - 1024d82a53
hedgedoc: add
2023-06-05 19:53:21 +02:00
lib Format 2023-02-18 23:49:11 +01:00
modules hedgedoc: add 2023-06-05 19:53:21 +02:00
LICENSE Initial commit 2022-12-20 01:48:50 +01:00
README.md Update readme 2023-01-03 05:14:35 +01:00
flake.lock flake.lock: Update 2023-03-16 23:10: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