Add example configuration.nix
This commit is contained in:
parent
a559c6172c
commit
d12e7600cf
15
configuration.nix.example
Normal file
15
configuration.nix.example
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
hostName = "Host name here!";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./options
|
||||
./overlays
|
||||
./base
|
||||
./hosts/${hostName}.nix
|
||||
./personal.nix
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in a new issue