From 757d5e5c81a0c07fde0c282d2df0e4bd836c033a Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Sun, 22 Feb 2026 16:43:15 +0100 Subject: [PATCH] feat: set up 'storage' module --- hosts/andromache/default.nix | 1 + hosts/astyanax/default.nix | 1 + hosts/vm/default.nix | 1 + modules/storage/default.nix | 3 +++ 4 files changed, 6 insertions(+) create mode 100644 modules/storage/default.nix diff --git a/hosts/andromache/default.nix b/hosts/andromache/default.nix index 7f116b9..da9efa3 100644 --- a/hosts/andromache/default.nix +++ b/hosts/andromache/default.nix @@ -35,6 +35,7 @@ in ../../modules/localization ../../modules/fonts ../../modules/ssh/hardened-openssh.nix + ../../modules/storage ../../modules/stylix (import ../../modules/secrets { inherit lib inputs config; }) ../../modules/docker diff --git a/hosts/astyanax/default.nix b/hosts/astyanax/default.nix index a1e0ec6..9c30d23 100644 --- a/hosts/astyanax/default.nix +++ b/hosts/astyanax/default.nix @@ -35,6 +35,7 @@ in ../../modules/localization ../../modules/fonts ../../modules/ssh/hardened-openssh.nix + ../../modules/storage ../../modules/stylix (import ../../modules/secrets { inherit lib inputs config; }) ../../modules/docker diff --git a/hosts/vm/default.nix b/hosts/vm/default.nix index 59f3422..4cd3bf0 100644 --- a/hosts/vm/default.nix +++ b/hosts/vm/default.nix @@ -25,6 +25,7 @@ in ../../modules/x ../../modules/fonts ../../modules/ssh/hardened-openssh.nix + ../../modules/storage (import ../../modules/secrets { inherit lib inputs config; }) diff --git a/modules/storage/default.nix b/modules/storage/default.nix new file mode 100644 index 0000000..c427974 --- /dev/null +++ b/modules/storage/default.nix @@ -0,0 +1,3 @@ +{ + services.udisks2.enable = true; +}