Merge pull request #95 from benneti/template

flake/host: add nixos-hardware
This commit is contained in:
Timothy DeHerrera 2021-01-18 10:05:06 -07:00 committed by GitHub
commit 6f7327cd79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 1 deletions

View file

@ -139,6 +139,17 @@ file:
flk iso flk iso
``` ```
## Hardware Specific Profile for a Single Host
Find out the fitting [nixos-hardware profile](https://github.com/NixOS/nixos-hardware#list-of-profiles) path for the hardware of your host and add it to the configuration.
For example for a Dell XPS 13 9370 the host configuration would contain:
```nix
{
imports = [ "${hardwareModulesPath}/dell/xps/13-9370" ... ];
...
}
```
## Use a Package from NUR ## Use a Package from NUR
NUR is wired in from the start. For safety, nothing is added from it by default, NUR is wired in from the start. For safety, nothing is added from it by default,

View file

@ -80,6 +80,21 @@
"type": "indirect" "type": "indirect"
} }
}, },
"nixos-hardware": {
"locked": {
"lastModified": 1610430373,
"narHash": "sha256-2sTBiGl0z0B3VD2qMHIJtOGxOuftR0iiBSv30AhVWIw=",
"owner": "nixos",
"repo": "nixos-hardware",
"rev": "874830945a65ad1134aff3a5aea0cdd2e1d914ab",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixos-hardware",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1607981906, "lastModified": 1607981906,
@ -114,6 +129,7 @@
"home": "home", "home": "home",
"master": "master", "master": "master",
"nixos": "nixos", "nixos": "nixos",
"nixos-hardware": "nixos-hardware",
"nur": "nur" "nur": "nur"
} }
} }

View file

@ -10,9 +10,10 @@
home.url = "github:nix-community/home-manager/release-20.09"; home.url = "github:nix-community/home-manager/release-20.09";
flake-utils.url = "github:numtide/flake-utils/flatten-tree-system"; flake-utils.url = "github:numtide/flake-utils/flatten-tree-system";
devshell.url = "github:numtide/devshell"; devshell.url = "github:numtide/devshell";
nixos-hardware.url = "github:nixos/nixos-hardware";
}; };
outputs = inputs@{ self, home, nixos, master, flake-utils, nur, devshell }: outputs = inputs@{ self, home, nixos, master, flake-utils, nur, devshell, nixos-hardware }:
let let
inherit (builtins) attrNames attrValues elem pathExists; inherit (builtins) attrNames attrValues elem pathExists;
inherit (flake-utils.lib) eachDefaultSystem mkApp flattenTreeSystem; inherit (flake-utils.lib) eachDefaultSystem mkApp flattenTreeSystem;

View file

@ -2,6 +2,7 @@
, lib , lib
, nixos , nixos
, master , master
, nixos-hardware
, osPkgs , osPkgs
, self , self
, system , system
@ -24,6 +25,7 @@ let
specialArgs = specialArgs =
{ {
unstableModulesPath = "${master}/nixos/modules"; unstableModulesPath = "${master}/nixos/modules";
hardwareModulesPath = "${nixos-hardware}";
}; };
modules = modules =