Format & add hostnames
This commit is contained in:
parent
f50259785f
commit
67ea5d6550
2 changed files with 33 additions and 14 deletions
|
@ -83,6 +83,20 @@
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "nixos-desk";
|
hostName = "nixos-desk";
|
||||||
useDHCP = lib.mkDefault true;
|
useDHCP = lib.mkDefault true;
|
||||||
|
extraHosts = ''
|
||||||
|
100.64.0.1 oekonzept.net
|
||||||
|
100.64.0.1 camt.oekonzept.net
|
||||||
|
100.64.0.1 camt-cbg.oekonzept.net
|
||||||
|
100.64.0.1 camt-eth.oekonzept.net
|
||||||
|
100.64.0.1 camt-pro.oekonzept.net
|
||||||
|
100.64.0.1 camt-swbfk.oekonzept.net
|
||||||
|
100.64.0.1 cloud.oekonzept.net
|
||||||
|
100.64.0.1 office.oekonzept.net
|
||||||
|
100.64.0.1 llama.oekonzept.net
|
||||||
|
100.64.0.1 netdata.oekonzept.net
|
||||||
|
100.64.0.1 oproject.oekonzept.net
|
||||||
|
100.64.0.1 leantime.oekonzept.net
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
hardware = {
|
hardware = {
|
||||||
enableRedistributableFirmware = true;
|
enableRedistributableFirmware = true;
|
||||||
|
|
|
@ -26,7 +26,12 @@
|
||||||
kernelPatches = pkgs.callPackage "${inputs.nixpkgs}/pkgs/os-specific/linux/kernel/patches.nix" { };
|
kernelPatches = pkgs.callPackage "${inputs.nixpkgs}/pkgs/os-specific/linux/kernel/patches.nix" { };
|
||||||
# ref = "6efbea77b390604a7be7364583e19cd2d6a1291b";
|
# ref = "6efbea77b390604a7be7364583e19cd2d6a1291b";
|
||||||
ref = "bc6d2d10418e1bfdb95b16f5dd4cca42d5dec766";
|
ref = "bc6d2d10418e1bfdb95b16f5dd4cca42d5dec766";
|
||||||
linux_mainline = { buildLinux, fetchzip, ... } @ args: buildLinux {
|
linux_mainline =
|
||||||
|
{ buildLinux
|
||||||
|
, fetchzip
|
||||||
|
, ...
|
||||||
|
} @ args:
|
||||||
|
buildLinux {
|
||||||
version = version;
|
version = version;
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
# url = "https://git.kernel.org/torvalds/t/linux-${ref}.tar.gz";
|
# url = "https://git.kernel.org/torvalds/t/linux-${ref}.tar.gz";
|
||||||
|
|
Loading…
Add table
Reference in a new issue