11 lines
177 B
Nix
11 lines
177 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
/etc/nixos/hardware-configuration.nix
|
|
../../workstation
|
|
../../wm/sway
|
|
];
|
|
networking.hostName = "dragon";
|
|
}
|