feat: remove tobira host until it is actually needed
All checks were successful
ci / nix-fmt (push) Successful in 8m5s

This commit is contained in:
Ceferino Patino 2026-05-25 13:16:50 -05:00
commit d2d1668d79
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
3 changed files with 0 additions and 99 deletions

View file

@ -1,16 +0,0 @@
{
lib,
namespace,
...
}: let
inherit (lib.${namespace}) enabled;
in {
${namespace} = {
bundles = {
common = enabled;
shell = enabled;
};
};
home.stateVersion = "25.11";
}

View file

@ -1,39 +0,0 @@
{
inputs,
lib,
namespace,
...
}: let
inherit (lib.${namespace}) enabled;
in {
imports = [
./hardware-configuration.nix
inputs.disko.nixosModules.default
(import ../../disko.nix {main = "/dev/sda";})
];
${namespace} = {
bundles = {
common = enabled;
};
services = {
networking = {
httpd = enabled;
};
};
};
programs.nh = {
enable = true;
clean.enable = true;
};
networking = {
hostName = "tobira";
hostId = "c98436c7";
};
system.stateVersion = "25.11";
}

View file

@ -1,44 +0,0 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{
config,
lib,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot = {
kernelModules = ["kvm-intel"];
extraModulePackages = [];
initrd = {
availableKernelModules = [
"xhci_pci"
"ahci"
"usbhid"
"usb_storage"
"sd_mod"
"sdhci_pci"
];
kernelModules = [];
systemd.tpm2.enable = false;
};
};
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.end0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}