summary refs log tree commit diff
path: root/nixos/modules/services/networking/amuled.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2021-12-05 22:56:22 +0100
committerpennae <github@quasiparticle.net>2021-12-09 01:42:24 +0100
commite67a646a925bc3cda86101a3f3afb81db3030ef5 (patch)
treefc91f2996187c22215a45c494a4fd21aba960db6 /nixos/modules/services/networking/amuled.nix
parent1f960e7571d46bd13dd4b5865f115467e100ef7d (diff)
downloadnixpkgs-e67a646a925bc3cda86101a3f3afb81db3030ef5.tar
nixpkgs-e67a646a925bc3cda86101a3f3afb81db3030ef5.tar.gz
nixpkgs-e67a646a925bc3cda86101a3f3afb81db3030ef5.tar.bz2
nixpkgs-e67a646a925bc3cda86101a3f3afb81db3030ef5.tar.lz
nixpkgs-e67a646a925bc3cda86101a3f3afb81db3030ef5.tar.xz
nixpkgs-e67a646a925bc3cda86101a3f3afb81db3030ef5.tar.zst
nixpkgs-e67a646a925bc3cda86101a3f3afb81db3030ef5.zip
treewide: add defaultText to remaining options
these are mostly options that use alias bindings, bindings to constants,
or bindings to calculated values.
Diffstat (limited to 'nixos/modules/services/networking/amuled.nix')
-rw-r--r--nixos/modules/services/networking/amuled.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/amuled.nix b/nixos/modules/services/networking/amuled.nix
index 39320643dd5..e55ac7a6b18 100644
--- a/nixos/modules/services/networking/amuled.nix
+++ b/nixos/modules/services/networking/amuled.nix
@@ -1,9 +1,10 @@
-{ config, lib, pkgs, ... }:
+{ config, lib, options, pkgs, ... }:
 
 with lib;
 
 let
   cfg = config.services.amule;
+  opt = options.services.amule;
   user = if cfg.user != null then cfg.user else "amule";
 in
 
@@ -26,6 +27,9 @@ in
       dataDir = mkOption {
         type = types.str;
         default = "/home/${user}/";
+        defaultText = literalExpression ''
+          "/home/''${config.${opt.user}}/"
+        '';
         description = ''
           The directory holding configuration, incoming and temporary files.
         '';