explicitely set hostname
This commit is contained in:
parent
84b5e3150a
commit
cce6a213aa
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, hostname, ... }:
|
||||
{
|
||||
imports = [
|
||||
./autoupdate.nix
|
||||
|
@ -6,7 +6,10 @@
|
|||
./optimise.nix
|
||||
];
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
networking = {
|
||||
networkmanager.enable = true;
|
||||
hostName = "${hostname}";
|
||||
};
|
||||
console.keyMap = "de";
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
|
Loading…
Add table
Reference in a new issue