Remove nix-dev configs.

This commit is contained in:
2024-09-16 13:50:24 +01:00
parent 75513abbf7
commit 55e607fd6b
3 changed files with 0 additions and 58 deletions

View File

@@ -1,16 +0,0 @@
{ pkgs, inputs, ... }:
{
imports = [
../../common/global
../../common/nomad-client.nix
../../common/user-node.nix
../../common/dev-node.nix
./hardware.nix
];
networking.hostName = "nix-dev";
services.tailscaleAutoconnect.authkey = "tskey-auth-k6s6VD5CNTRL-3fmjSfzbQ3PHUMyaiML95P8xzmGv5XxYc";
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
}

View File

@@ -1,32 +0,0 @@
{
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"virtio_pci"
"virtio_scsi"
"sd_mod"
"sr_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/d8fd0d0d-99f3-47c3-9821-1ecb51e0fa7b";
fsType = "ext4";
};
swapDevices = [ { device = "/dev/disk/by-uuid/f50d64a5-948d-4ff4-88f2-0e0f4eae4c9e"; } ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}