17 lines
239 B
Nix
17 lines
239 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
environment.systemPackages = lib.mkAfter (with pkgs; [
|
|
firefox
|
|
]);
|
|
|
|
services.xserver.enable = true;
|
|
|
|
networking.hostName = "tardis";
|
|
}
|