summaryrefslogtreecommitdiff
path: root/common/default.nix
diff options
context:
space:
mode:
authortoufic ar <contact@toufy.me>2026-04-22 14:08:19 +0300
committertoufic ar <contact@toufy.me>2026-04-22 14:08:19 +0300
commitc7349e466fef7ecff5a46b1d0c819975a6bdcb8c (patch)
tree2a3fc53016ae4d0b31d7583171bd4b8e60f4cc17 /common/default.nix
downloadservers-c7349e466fef7ecff5a46b1d0c819975a6bdcb8c.tar.gz
servers-c7349e466fef7ecff5a46b1d0c819975a6bdcb8c.zip
initial commit
Diffstat (limited to 'common/default.nix')
-rw-r--r--common/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/common/default.nix b/common/default.nix
new file mode 100644
index 0000000..fca1d03
--- /dev/null
+++ b/common/default.nix
@@ -0,0 +1,24 @@
+{
+ imports = [
+ ./disks.nix
+ ./fail2ban.nix
+ ./hardware.nix
+ ./mail.nix
+ ./network.nix
+ ./nginx.nix
+ ./nvim.nix
+ ./options.nix
+ ./ssh.nix
+ ];
+ boot.loader.systemd-boot.enable = true;
+ boot.loader.efi.canTouchEfiVariables = true;
+ nix.settings.experimental-features = ["nix-command" "flakes"];
+ customOps.owner = {
+ username = "toufy";
+ pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN8CKkq7m/FPTqjAO3yGWhH7y+9flDjyNC9hQFenvbKs toufy";
+ };
+ customOps.domain = {
+ name = "toufy";
+ tld = "me";
+ };
+}