nix/os/devices/nuc-work: continue setup

This commit is contained in:
steveej 2019-11-24 01:05:41 +01:00
parent 7bac7cd42a
commit 77eb1e48e4
2 changed files with 3 additions and 1 deletions

View file

@ -4,8 +4,10 @@
imports = [ imports = [
../../profiles/common/configuration.nix ../../profiles/common/configuration.nix
../../profiles/graphical/configuration.nix ../../profiles/graphical/configuration.nix
../../modules/encryptedDisk.nix
./system.nix ./system.nix
./hw.nix ./hw.nix
../../profiles/removable-medium/pkg.nix
]; ];
} }

View file

@ -26,6 +26,6 @@ let
in in
pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor linux_sgx); pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor linux_sgx);
in { in {
networking.hostName = "steveej-nuc7pjyh-work-"; # Define your hostname. networking.hostName = "steveej-nuc7pjyh-work"; # Define your hostname.
boot.kernelPackages = lib.mkForce sgx_linuxpackages; boot.kernelPackages = lib.mkForce sgx_linuxpackages;
} }