summaryrefslogtreecommitdiffstats
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2020-03-09 12:01:19 +0100
committerzimbatm <zimbatm@zimbatm.com>2020-03-09 12:01:41 +0100
commitcc90ececa78a269bcf185e62e160a0eed4d45a14 (patch)
tree71747dc7746854bb2c449ebc8e9025e06ea88c41 /nixos/modules/system
parent242742d195926bf4fd9fee17f57bb6cfbd56ecab (diff)
environment.etc: fix typo
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/etc/etc.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/system/etc/etc.nix b/nixos/modules/system/etc/etc.nix
index 57ade2880962..1f4d54a1ae20 100644
--- a/nixos/modules/system/etc/etc.nix
+++ b/nixos/modules/system/etc/etc.nix
@@ -94,7 +94,7 @@ in
default = 0;
type = types.int;
description = ''
- UID of created file. Only takes affect when the file is
+ UID of created file. Only takes effect when the file is
copied (that is, the mode is not 'symlink').
'';
};
@@ -103,7 +103,7 @@ in
default = 0;
type = types.int;
description = ''
- GID of created file. Only takes affect when the file is
+ GID of created file. Only takes effect when the file is
copied (that is, the mode is not 'symlink').
'';
};
@@ -113,7 +113,7 @@ in
type = types.str;
description = ''
User name of created file.
- Only takes affect when the file is copied (that is, the mode is not 'symlink').
+ Only takes effect when the file is copied (that is, the mode is not 'symlink').
Changing this option takes precedence over <literal>uid</literal>.
'';
};
@@ -123,7 +123,7 @@ in
type = types.str;
description = ''
Group name of created file.
- Only takes affect when the file is copied (that is, the mode is not 'symlink').
+ Only takes effect when the file is copied (that is, the mode is not 'symlink').
Changing this option takes precedence over <literal>gid</literal>.
'';
};