aboutsummaryrefslogtreecommitdiff
path: root/lib/system.nix
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-01-24 13:29:27 +0900
committersefidel <contact@sefidel.net>2024-01-24 18:59:54 +0900
commit8e9b074467006c76768efe04cf1fb1ef9d652c67 (patch)
treefad73c7f94a74c77714c260d1fc0a63e2d205b49 /lib/system.nix
downloadinfra-modules-main.zip
initial commitHEADmain
Diffstat (limited to 'lib/system.nix')
-rw-r--r--lib/system.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/system.nix b/lib/system.nix
new file mode 100644
index 0000000..8fc4dce
--- /dev/null
+++ b/lib/system.nix
@@ -0,0 +1,22 @@
+{ self, inputs, lib, pkgs, ... }:
+
+with lib;
+with lib.my;
+{
+ mkSystem = path: attrs @ { ... }: {
+ imports = [
+ {
+ networking.hostName = mkDefault
+ (removeSuffix ".nix" (baseNameOf path));
+ system.configurationRevision = self.rev or "dirty";
+ }
+ ../. # /default.nix
+ (import path)
+ ];
+ };
+
+ mapSystems = dir: attrs @ { system ? system, ... }:
+ mapModules dir
+ (hostPath: mkSystem hostPath attrs);
+}
+