aboutsummaryrefslogtreecommitdiff
path: root/modules/file.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/file.nix')
-rw-r--r--modules/file.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/modules/file.nix b/modules/file.nix
new file mode 100644
index 0000000..a52fb84
--- /dev/null
+++ b/modules/file.nix
@@ -0,0 +1,46 @@
+{ config, pkgs, lib, ... }:
+with builtins // lib;
+let
+ cfg = config.file;
+in {
+ options.file = mkOption {
+ default = {};
+ type = with types; lazyAttrsOf (submodule ({ name, config, ... }: {
+ options = {
+ enable = mkEnableOption name // { default = true; };
+ target = mkOption {
+ type = types.str;
+ default = name;
+ };
+ executable = mkOption {
+ type = with types; nullOr bool;
+ default = null;
+ };
+ directory = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Enable this if the source file is a directory. Note that directories are copied first when forming the source
+ '';
+ };
+ source = mkOption {
+ type = types.path;
+ };
+ text = mkOption {
+ type = with types; nullOr lines;
+ default = null;
+ };
+ };
+
+ config = mkMerge [
+ (mkIf (config.text != null) {
+ directory = false;
+ source = pkgs.writeText name config.text;
+ })
+ (mkIf (config.text == "") {
+ enable = false;
+ })
+ ];
+ }));
+ };
+}