This commit is contained in:
2025-05-15 21:11:30 +03:00
commit b6cee5e832
43 changed files with 2652 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{
description = "zeroq structure flake";
outputs =
{ self }:
rec {
nixos = "/etc/nixos";
devices = rec {
admin = "oqyude";
laptop = {
hostname = "atoridu";
};
mini-laptop = {
hostname = "lamet";
};
server = {
username = "otreca";
hostname = "sapphira";
};
wsl.hostname = "wsl";
};
dirs = rec {
# User
user-home = "/home/${devices.admin}";
user-storage = "${user-home}/Storage";
therima-drive = "/mnt/therima";
vetymae-drive = "/mnt/vetymae";
# Server
server-home = "/home/${devices.admin}/External";
storage = "${server-home}/Storage";
calibre-library = "${server-home}/Books-Library";
};
};
}