You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
492 B
22 lines
492 B
# NixOS Configuration for a Lenovo x201 |
|
|
|
{ config, pkgs, ... }: |
|
|
|
{ |
|
imports = |
|
[ |
|
../hardware/lenovo_x201.nix |
|
../profiles/desktop_common.nix |
|
]; |
|
|
|
# Use the GRUB 2 boot loader. |
|
boot.loader.grub.enable = true; |
|
boot.loader.grub.version = 2; |
|
boot.loader.grub.device = "/dev/sda"; |
|
|
|
deployment.targetHost = "10.42.0.121"; |
|
networking.hostName = "iolear-beag"; # Define your hostname. |
|
|
|
system.stateVersion = "18.09"; # The version of NixOS originally installed |
|
|
|
}
|
|
|