summaryrefslogtreecommitdiff
path: root/parts/systems/atlas
diff options
context:
space:
mode:
Diffstat (limited to 'parts/systems/atlas')
-rw-r--r--parts/systems/atlas/default.nix50
-rw-r--r--parts/systems/atlas/hardware-configuration.nix29
-rw-r--r--parts/systems/atlas/miniflux.nix20
-rw-r--r--parts/systems/atlas/nginx.nix32
4 files changed, 0 insertions, 131 deletions
diff --git a/parts/systems/atlas/default.nix b/parts/systems/atlas/default.nix
deleted file mode 100644
index 24cb139..0000000
--- a/parts/systems/atlas/default.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- config,
- pkgs,
- ...
-}: {
- imports = [
- ./hardware-configuration.nix
- ./miniflux.nix
- ./nginx.nix
- ];
-
- _module.args.nixinate = {
- host = "atlas";
- sshUser = "root";
- buildOn = "remote";
- substituteOnTarget = true;
- hermetic = false;
- };
-
- boot = {
- loader.systemd-boot.enable = true;
- loader.efi.canTouchEfiVariables = true;
- tmp.cleanOnBoot = true;
- };
-
- networking = {
- domain = "mydadleft.me";
- hostName = "atlas";
- };
-
- services = {
- guzzle-api = {
- enable = true;
- domain = "api.${config.networking.domain}";
- nginx = {
- enableACME = true;
- acmeRoot = null;
- addSSL = true;
- };
- };
- };
-
- users.users.atlas = {
- isNormalUser = true;
- shell = pkgs.bash;
- passwordFile = config.age.secrets.userPassword.path;
- };
-
- zramSwap.enable = true;
-}
diff --git a/parts/systems/atlas/hardware-configuration.nix b/parts/systems/atlas/hardware-configuration.nix
deleted file mode 100644
index 00c6cd8..0000000
--- a/parts/systems/atlas/hardware-configuration.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{modulesPath, ...}: {
- imports = [
- (modulesPath + "/profiles/qemu-guest.nix")
- ];
-
- boot = {
- extraModulePackages = [];
- kernelModules = [];
-
- initrd = {
- availableKernelModules = ["virtio_pci" "usbhid"];
- kernelModules = [];
- };
- };
-
- fileSystems = {
- "/" = {
- device = "/dev/disk/by-uuid/f0c84809-83f5-414b-a973-496d25d74c6d";
- fsType = "ext4";
- };
-
- "/boot" = {
- device = "/dev/disk/by-uuid/A253-0826";
- fsType = "vfat";
- };
- };
-
- swapDevices = [];
-}
diff --git a/parts/systems/atlas/miniflux.nix b/parts/systems/atlas/miniflux.nix
deleted file mode 100644
index 5ed5d40..0000000
--- a/parts/systems/atlas/miniflux.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- config,
- self,
- ...
-}: {
- config = {
- age.secrets = {
- miniflux.file = "${self}/parts/secrets/systems/${config.networking.hostName}/miniflux.age";
- };
-
- services.miniflux = {
- enable = true;
- adminCredentialsFile = config.age.secrets.miniflux.path;
- config = {
- BASE_URL = "https://miniflux.${config.networking.domain}";
- LISTEN_ADDR = "localhost:7000";
- };
- };
- };
-}
diff --git a/parts/systems/atlas/nginx.nix b/parts/systems/atlas/nginx.nix
deleted file mode 100644
index cdf483d..0000000
--- a/parts/systems/atlas/nginx.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- config,
- self,
- ...
-}: let
- inherit (config.networking) domain;
- inherit (self.lib.utils.nginx) mkVHosts mkProxy;
-in {
- server = {
- acme.enable = true;
- services.cloudflared.enable = true;
- };
-
- services.nginx = {
- enable = true;
-
- recommendedGzipSettings = true;
- recommendedOptimisation = true;
- recommendedProxySettings = true;
- recommendedTlsSettings = true;
-
- virtualHosts = mkVHosts {
- "miniflux.${domain}" = {
- locations = mkProxy "/" "7000";
- };
-
- "msix.${domain}" = {
- root = "/var/www/msix";
- };
- };
- };
-}