aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/nixos/suites/common
diff options
context:
space:
mode:
Diffstat (limited to 'snowfall/modules/nixos/suites/common')
-rw-r--r--snowfall/modules/nixos/suites/common/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/snowfall/modules/nixos/suites/common/default.nix b/snowfall/modules/nixos/suites/common/default.nix
new file mode 100644
index 0000000..0090ba3
--- /dev/null
+++ b/snowfall/modules/nixos/suites/common/default.nix
@@ -0,0 +1,17 @@
+{ options, config, lib, namespace, ... }:
+
+with lib; with lib.${namespace}; let
+ cfg = config.${namespace}.suites.common;
+in {
+ options.${namespace}.suites.common = with types; {
+ enable = mkEnableOption "common";
+ };
+
+ config = mkIf cfg.enable {
+ cxl = {
+ apps = {
+ bash.enable = true;
+ };
+ };
+ };
+}