summaryrefslogtreecommitdiff
path: root/nix/systems/spontaneity/default.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-02 00:03:12 -0800
committerPreston Pan <ret2pop@nullring.xyz>2026-03-02 00:03:12 -0800
commit9484c4ec525c02caa8a65ecfe37ed24f1d4b321d (patch)
tree676712a1504939b37a69fbee9c235dc61917cd65 /nix/systems/spontaneity/default.nix
parenta05e0614c1bb75f77717a943dc4ac75a0cca4652 (diff)
Remove local nix directory to prepare for submodule
Diffstat (limited to 'nix/systems/spontaneity/default.nix')
-rw-r--r--nix/systems/spontaneity/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/nix/systems/spontaneity/default.nix b/nix/systems/spontaneity/default.nix
deleted file mode 100644
index 823c7b9..0000000
--- a/nix/systems/spontaneity/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, lib, ... }:
-{
- imports = [
- ../common.nix
- ../../disko/drive-bios.nix
-
- # nixos-anywhere generates this file
- ./hardware-configuration.nix
- ];
- config = {
- monorepo = {
- vars.device = "/dev/vda";
- profiles = {
- server = {
- enable = true;
- ipv4 = "66.42.84.130";
- gateway = "66.42.84.1";
- ipv6 = "2001:19f0:5401:10d0:5400:5ff:fe4a:7794";
- interface = "ens3";
- };
- grub.enable = true;
- pipewire.enable = false;
- tor.enable = false;
- };
- };
- boot.loader.grub.device = "nodev";
- };
-}