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.
|
2 days ago | |
---|---|---|
lib | 4 months ago | |
modules | 2 days ago | |
LICENSE | 6 months ago | |
README.md | 5 months ago | |
flake.lock | 3 months ago | |
flake.nix | 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.