summaryrefslogtreecommitdiffstats
path: root/tv
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2015-11-06 21:29:49 +0100
committertv <tv@krebsco.de>2015-11-06 21:29:49 +0100
commitb54f00c6954a0b44abb52289332c748f95d796d3 (patch)
treeaa58c79e55e1c403d178caeaa64293363b3330ca /tv
parentf58d024f48604be48f5fe117196fc68fffc020e9 (diff)
tv modules: add per-user
Diffstat (limited to 'tv')
-rw-r--r--tv/3modules/default.nix1
-rw-r--r--tv/3modules/per-user.nix35
2 files changed, 36 insertions, 0 deletions
diff --git a/tv/3modules/default.nix b/tv/3modules/default.nix
index bb10d826..3a75d6e4 100644
--- a/tv/3modules/default.nix
+++ b/tv/3modules/default.nix
@@ -5,5 +5,6 @@ _:
./consul.nix
./ejabberd.nix
./iptables.nix
+ ./per-user.nix
];
}
diff --git a/tv/3modules/per-user.nix b/tv/3modules/per-user.nix
new file mode 100644
index 00000000..8d21a01d
--- /dev/null
+++ b/tv/3modules/per-user.nix
@@ -0,0 +1,35 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.tv.per-user;
+
+ out = {
+ options.tv.per-user = api;
+ config = imp;
+ };
+
+ api = mkOption {
+ type = with types; attrsOf (submodule {
+ options = {
+ packages = mkOption {
+ type = listOf path;
+ default = [];
+ };
+ };
+ });
+ default = {};
+ };
+
+ imp = {
+ environment = {
+ etc = flip mapAttrs' cfg (name: { packages, ... }: {
+ name = "per-user/${name}";
+ value.source = pkgs.symlinkJoin "per-user.${name}" packages;
+ });
+ profiles = ["/etc/per-user/$LOGNAME"];
+ };
+ };
+
+in out