10 lines
151 B
Nix
10 lines
151 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Import general Configs
|
|
imports = [ ./configuration.nix ];
|
|
|
|
# Hostname
|
|
networking.hostName = "eliasDesktop";
|
|
}
|