feat: set hostname automatically

This commit is contained in:
Nydragon 2024-07-11 01:18:58 +02:00
parent 920a836eef
commit 87236d4923
3 changed files with 5 additions and 12 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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";
};
};