aboutsummaryrefslogtreecommitdiff
path: root/machines/nixos-test
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2023-09-27 12:49:16 +0200
committerMax Audron <audron@cocaine.farm>2023-09-27 12:49:16 +0200
commit7f30f1c9d8b6b885081ad81e3fa3c6849b3f3548 (patch)
tree857bde9b44f25cb321b6d4831e6db99fba3888cb /machines/nixos-test
parentadd secrets submodule (diff)
test kubernetes deployment
Diffstat (limited to 'machines/nixos-test')
-rw-r--r--machines/nixos-test/default.nix23
-rw-r--r--machines/nixos-test/hardware-configuration.nix9
2 files changed, 0 insertions, 32 deletions
diff --git a/machines/nixos-test/default.nix b/machines/nixos-test/default.nix
deleted file mode 100644
index 651ae82..0000000
--- a/machines/nixos-test/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
- imports = [
- ./hardware-configuration.nix
- ];
-
- boot.tmp.cleanOnBoot = true;
- zramSwap.enable = true;
- networking.hostName = "default";
- networking.domain = "";
- services.openssh.enable = true;
- users.users.root.openssh.authorizedKeys.keys = [
- ''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO2eIUtbt7RM75ThjKfUjm24QkzkzCSj7hs+GLaaxMeH cardno:12_767_512''
- ];
-
- _module.args.nixinate = {
- host = "10.49.212.3";
- buildOn = "remote";
- substituteOnTarget = true;
- hermetic = false;
- };
-}
diff --git a/machines/nixos-test/hardware-configuration.nix b/machines/nixos-test/hardware-configuration.nix
deleted file mode 100644
index 850f51f..0000000
--- a/machines/nixos-test/hardware-configuration.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ modulesPath, ... }:
-{
- imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
- boot.loader.grub.device = "/dev/sda";
- boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
- boot.initrd.kernelModules = [ "nvme" ];
- fileSystems."/" = { device = "/dev/sda2"; fsType = "ext4"; };
-
-}