sf
This commit is contained in:
@@ -31,7 +31,7 @@ in
|
||||
};
|
||||
fullName = mkOption {
|
||||
type = types.str;
|
||||
default = "Austin Horstman";
|
||||
default = "Matt Jallen";
|
||||
description = "The full name of the user.";
|
||||
};
|
||||
home = mkOption {
|
||||
@@ -41,8 +41,8 @@ in
|
||||
};
|
||||
icon = mkOption {
|
||||
type = (types.nullOr types.package);
|
||||
default = pkgs.${namespace}.user-icon;
|
||||
description = "The profile picture to use for the user.";
|
||||
default = null;
|
||||
description = "The profile picture to use for the user. Set to a package whose output is the icon file (e.g. a derivation producing a PNG).";
|
||||
};
|
||||
name = mkOption {
|
||||
type = (types.nullOr types.str);
|
||||
@@ -145,7 +145,7 @@ in
|
||||
myip = "${getExe pkgs.curl} ifconfig.me";
|
||||
|
||||
# Cryptography
|
||||
genpass = "${getExe pkgs.openssl} rand - base64 20"; # Generate a random, 20-character password
|
||||
genpass = "${getExe pkgs.openssl} rand -base64 20"; # Generate a random, 20-character password
|
||||
sha = "shasum -a 256"; # Test checksum
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user