feat: set hostname automatically
This commit is contained in:
parent
920a836eef
commit
87236d4923
3 changed files with 5 additions and 12 deletions
|
@ -2,7 +2,6 @@
|
|||
pkgs,
|
||||
inputs,
|
||||
username,
|
||||
hostname,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -17,7 +16,6 @@
|
|||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = hostname;
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
services.blueman.enable = true;
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
pkgs,
|
||||
inputs,
|
||||
username,
|
||||
hostname,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -20,7 +19,6 @@
|
|||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.initrd.luks.devices."luks-7adaa102-d438-4e9e-9972-4a3c91b887b3".device = "/dev/disk/by-uuid/7adaa102-d438-4e9e-9972-4a3c91b887b3";
|
||||
networking.hostName = hostname;
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
|
|
|
@ -18,15 +18,12 @@
|
|||
}:
|
||||
lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ../hosts/${hostname}/configuration.nix ] ++ extraModules;
|
||||
modules = [
|
||||
../hosts/${hostname}/configuration.nix
|
||||
{ networking.hostName = hostname; }
|
||||
] ++ extraModules;
|
||||
specialArgs = {
|
||||
inherit
|
||||
inputs
|
||||
system
|
||||
lib
|
||||
hostname
|
||||
;
|
||||
|
||||
inherit inputs;
|
||||
username = "nico";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue