Add nixos-hardware repo

This commit is contained in:
Greg Hellings
2025-05-10 21:08:05 -05:00
parent 6db66fa45e
commit dc2786fc4b
4 changed files with 29 additions and 2 deletions
+9 -1
View File
@@ -2,11 +2,15 @@
config,
lib,
pkgs,
top,
...
}:
{
imports = [ ./hardware-configuration.nix ];
imports = [
./hardware-configuration.nix
top.nix-hardware.nixosModules.framework-11th-gen-intel
];
boot = {
loader = {
@@ -39,6 +43,10 @@
networkmanager.enable = lib.mkForce true;
};
services = {
fwupd.enable = true;
};
virtualisation = {
podman.enable = true;
oci-containers.backend = "podman";
+3 -1
View File
@@ -1,7 +1,8 @@
{
config,
lib,
pkgs,
config,
top,
...
}:
@@ -12,6 +13,7 @@
./podman.nix
./virt.nix
./work.nix
top.nix-hardware.nixosModules.system76
];
programs = {
adb.enable = true;