summaryrefslogtreecommitdiff
path: root/hosts/ades/hardware.nix
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-06-14 15:01:30 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-06-14 15:01:30 -0500
commit4e970f7cc35d2747af0baa6fca9df5abc18bee43 (patch)
tree4d1b5b1550d487c246cc90e7b0b735989958f6b5 /hosts/ades/hardware.nix
parentfdd799bf06c5d40cb8a3e8292ee76bff265765f9 (diff)
downloadnixos-config-4e970f7cc35d2747af0baa6fca9df5abc18bee43.tar.gz
nixos-config-4e970f7cc35d2747af0baa6fca9df5abc18bee43.zip
hosts: Rename ades/* to bean/*
Diffstat (limited to 'hosts/ades/hardware.nix')
-rw-r--r--hosts/ades/hardware.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/hosts/ades/hardware.nix b/hosts/ades/hardware.nix
deleted file mode 100644
index ac7fde8..0000000
--- a/hosts/ades/hardware.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ pkgs, ... }:
-
-{
- boot.initrd.availableKernelModules = [
- "iwlwifi"
- ];
- boot.kernelModules = [
- "kvm-intel"
- ];
- boot.extraModulePackages = [];
-
- hardware.graphics.extraPackages = [pkgs.intel-vaapi-driver];
- services.xserver.videoDrivers = ["intel"];
-
- hardware.firmware = with pkgs; [
- linux-firmware
- ];
-
- this.bluetooth.enable = true;
-
- nixpkgs.hostPlatform = "x86_64-linux";
-}