Merge pull request #95 from benneti/template
flake/host: add nixos-hardware
This commit is contained in:
commit
6f7327cd79
11
README.md
11
README.md
@ -139,6 +139,17 @@ file:
|
||||
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
|
||||
|
||||
NUR is wired in from the start. For safety, nothing is added from it by default,
|
||||
|
16
flake.lock
16
flake.lock
@ -80,6 +80,21 @@
|
||||
"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": {
|
||||
"locked": {
|
||||
"lastModified": 1607981906,
|
||||
@ -114,6 +129,7 @@
|
||||
"home": "home",
|
||||
"master": "master",
|
||||
"nixos": "nixos",
|
||||
"nixos-hardware": "nixos-hardware",
|
||||
"nur": "nur"
|
||||
}
|
||||
}
|
||||
|
@ -10,9 +10,10 @@
|
||||
home.url = "github:nix-community/home-manager/release-20.09";
|
||||
flake-utils.url = "github:numtide/flake-utils/flatten-tree-system";
|
||||
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
|
||||
inherit (builtins) attrNames attrValues elem pathExists;
|
||||
inherit (flake-utils.lib) eachDefaultSystem mkApp flattenTreeSystem;
|
||||
|
@ -2,6 +2,7 @@
|
||||
, lib
|
||||
, nixos
|
||||
, master
|
||||
, nixos-hardware
|
||||
, osPkgs
|
||||
, self
|
||||
, system
|
||||
@ -24,6 +25,7 @@ let
|
||||
specialArgs =
|
||||
{
|
||||
unstableModulesPath = "${master}/nixos/modules";
|
||||
hardwareModulesPath = "${nixos-hardware}";
|
||||
};
|
||||
|
||||
modules =
|
||||
|
Loading…
Reference in New Issue
Block a user