mio-ops/hosts/dhu.nix

18 lines
408 B
Nix
Raw Normal View History

2021-05-14 04:09:29 +00:00
# Configuration for an ASUS ASUS 701 EeePC4G-BK004
{ config, pkgs, ... }:
{
imports = [
../hardware/eeepc701.nix # Include common configuration options
../secrets/wireless.nix
];
deployment.targetHost = "10.42.0.119";
networking.hostName = "dhu"; # Define your hostname.
2021-05-14 06:27:13 +00:00
programs.sway.enable = true;
2021-05-14 04:09:29 +00:00
system.stateVersion = "20.09"; # The version of NixOS originally installed
}