blob: e6b111d1c028b2b136e45231b04ec29975f3a66c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{config, pkgs, lib, ...}:
{
# Type definitions for nix variables used in this configuration
options = with lib; with types; {
myUserName = mkOption { type = str; };
myHostName = mkOption { type = str; };
};
# Default values for this configuration
config = {
myUserName = "stvnliu";
myHostName = "homelab-nix";
};
}
|