Add nixos-hardware repo
This commit is contained in:
Generated
+16
@@ -421,6 +421,21 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nix-hardware": {
|
||||
"locked": {
|
||||
"lastModified": 1746814339,
|
||||
"narHash": "sha256-hf2lICJzwACWuzHCmZn5NI6LUAOgGdR1yh8ip+duyhk=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixos-hardware",
|
||||
"rev": "3c5e12673265dfb0de3d9121420c0c2153bf21e0",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"repo": "nixos-hardware",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixlib": {
|
||||
"locked": {
|
||||
"lastModified": 1736643958,
|
||||
@@ -724,6 +739,7 @@
|
||||
"flake-parts": "flake-parts",
|
||||
"hmunstable": "hmunstable",
|
||||
"hooks": "hooks",
|
||||
"nix-hardware": "nix-hardware",
|
||||
"nixos-generators": "nixos-generators",
|
||||
"nixunstable": "nixunstable",
|
||||
"nixvimunstable": "nixvimunstable",
|
||||
|
||||
@@ -36,6 +36,7 @@
|
||||
proxmox.url = "github:SaumonNet/proxmox-nixos";
|
||||
# To enable backups: https://github.com/SaumonNet/proxmox-nixos/pull/45
|
||||
#proxmox.url = "github:blecher-at/proxmox-nixos/fix-backup-pve-manager";
|
||||
nix-hardware.url = "github:nixos/nixos-hardware";
|
||||
nixos-generators = {
|
||||
url = "github:nix-community/nixos-generators";
|
||||
inputs.nixpkgs.follows = "nixunstable";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user