diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-12-11 16:24:40 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-12-11 16:24:40 +0100 |
commit | 7be98246015237af8077e3320101408639316bb8 (patch) | |
tree | c376364ca6d9d54a6ba5db5328ccba3c5703743b /machines/hp-compaq/configuration.nix | |
parent | 527c96af4ed48111cfa19161fb2680b6866c2594 (diff) | |
download | dots-7be98246015237af8077e3320101408639316bb8.tar.gz dots-7be98246015237af8077e3320101408639316bb8.zip |
Add adax host
Diffstat (limited to 'machines/hp-compaq/configuration.nix')
-rwxr-xr-x | machines/hp-compaq/configuration.nix | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/machines/hp-compaq/configuration.nix b/machines/hp-compaq/configuration.nix index 958088c..cc61647 100755 --- a/machines/hp-compaq/configuration.nix +++ b/machines/hp-compaq/configuration.nix @@ -1,22 +1,16 @@ { config, pkgs, ... }: { - imports = - [ # Include the results of the hardware scan. - ./hardware-configuration.nix - ]; - boot.loader.grub.enable = true; - boot.loader.grub.version = 2; - boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only + imports = [ + ../base.nix + ../pl.nix + ../../modules/larbs.nix + ]; networking.hostName = "hp-compaq"; - networking.useDHCP = false; - networking.interfaces.enp2s0.useDHCP = true; - environment.systemPackages = with pkgs; [ ]; - } |