14 lines
298 B
Nix
14 lines
298 B
Nix
#https://xeiaso.net/talks/asg-2023-nixos/ example
|
|
{ lib, config, pkgs, ... }:{
|
|
imports = [./gpg-agent.nix
|
|
./name.nix];
|
|
|
|
#Global suite options
|
|
options.azos.name = lib.mkOption{
|
|
default = "YOUR NAME HERE";
|
|
type = lib.types.str;
|
|
description = "Your full name.";
|
|
};
|
|
|
|
}
|