From c4a76d610cb3fafff0bce8916481ab49aa380a27 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Wed, 11 Dec 2024 02:45:11 +0100 Subject: [PATCH] feat: add module to easily symlink into a user's $HOME --- options/system/default.nix | 1 + options/system/users/default.nix | 73 ++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 options/system/users/default.nix diff --git a/options/system/default.nix b/options/system/default.nix index 9a83083..82283ff 100644 --- a/options/system/default.nix +++ b/options/system/default.nix @@ -3,5 +3,6 @@ ./networking ./roles ./outputs.nix + ./users ]; } diff --git a/options/system/users/default.nix b/options/system/users/default.nix new file mode 100644 index 0000000..ef7bf20 --- /dev/null +++ b/options/system/users/default.nix @@ -0,0 +1,73 @@ +{ + pkgs, + config, + lib, + ... +}: +let + inherit (lib) mkOption; + inherit (lib.types) + attrsOf + submodule + str + package + either + ; + + cfg = config.modules.system.users; + file = submodule ( + { name, config, ... }: + { + options = { + path = mkOption { + type = either package null; + default = null; + }; + + content = mkOption { + type = either str null; + default = null; + }; + }; + } + ); +in +{ + options.modules.system.users = mkOption { + default = { }; + type = attrsOf ( + submodule ( + { name, config, ... }: + { + options = { + name = mkOption { + type = str; + default = name; + }; + + files = mkOption { + type = attrsOf file; + default = { }; + }; + }; + } + ) + ); + }; + + config = + let + toDeriv = + b: a: if a.content != null then pkgs.writers.writeText (lib.my.slugify b) a.content else a.path; + in + { + systemd.tmpfiles.rules = lib.flatten ( + lib.mapAttrsToList ( + name: value: + lib.mapAttrsToList (target: value: [ + "L+ /home/${name}/${target} - - - - ${toDeriv target value}" + ]) value.files + ) cfg + ); + }; +}