18 lines
408 B
Nix
18 lines
408 B
Nix
# Configuration for an ASUS ASUS 701 EeePC4G-BK004
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../hardware/eeepc701.nix # Include common configuration options
|
|
../../secrets/wireless.nix
|
|
../../profiles/sway.nix
|
|
];
|
|
|
|
deployment.targetHost = "10.42.0.119";
|
|
networking.hostName = "dhu"; # Define your hostname.
|
|
|
|
system.stateVersion = "20.09"; # The version of NixOS originally installed
|
|
}
|