forked from fabian/nix_config
baseline
This commit is contained in:
commit
c8791adf39
33 changed files with 1844 additions and 0 deletions
30
home/options.nix
Normal file
30
home/options.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; {
|
||||
options.local = with types; {
|
||||
platform = mkOption {
|
||||
type = str;
|
||||
};
|
||||
|
||||
display = {
|
||||
"0" = mkOption {
|
||||
type = str;
|
||||
};
|
||||
|
||||
"1" = mkOption {
|
||||
type = nullOr str;
|
||||
};
|
||||
|
||||
autorandrProfile = mkOption {
|
||||
type = attrs;
|
||||
};
|
||||
};
|
||||
|
||||
nixos = mkOption {
|
||||
type = bool;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue