formatting
This commit is contained in:
parent
228605fd02
commit
43e6317a35
1 changed files with 6 additions and 5 deletions
|
|
@ -27,11 +27,12 @@
|
|||
# Users
|
||||
users = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.str;
|
||||
default =
|
||||
[ "osbm" ]
|
||||
++ lib.optionals
|
||||
(config.osbmModules.machineType == "desktop" || config.osbmModules.machineType == "laptop")
|
||||
[ "bayram" ];
|
||||
default = [
|
||||
"osbm"
|
||||
]
|
||||
++ lib.optionals (
|
||||
config.osbmModules.machineType == "desktop" || config.osbmModules.machineType == "laptop"
|
||||
) [ "bayram" ];
|
||||
description = "List of users to create. `osbm` is my main user, and `bayram` is for my family (only on desktop/laptop).";
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue