replace nixos-hardware with nixos-facter

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-30 00:33:56 +03:00
parent 8c9ab14a76
commit 019ea4247a
5 changed files with 7349 additions and 17 deletions

View File

@ -1,12 +1,16 @@
{inputs, ...}: {
{
inputs,
pkgs,
...
}: {
imports = with inputs; [
self.nixosModules.desktop
self.nixosModules.system
./boot.nix
./boot
./disko.nix
./hardware.nix
./networking.nix
./nix.nix
./facter
./nix
./programs.nix
./services.nix
./sops.nix
@ -31,4 +35,9 @@
bluetooth.enable = true;
bluetooth.enableBlueman = false;
};
hardware.graphics.extraPackages = with pkgs; [
intel-compute-runtime
intel-media-driver
vpl-gpu-rt
];
}

View File

@ -0,0 +1,7 @@
{inputs, ...}: {
imports = with inputs; [
nixos-facter-modules.nixosModules.facter
];
facter.reportPath = ./facter.json;
systemd.network.wait-online.enable = false;
}

File diff suppressed because it is too large Load Diff