Files
dotfiles/hosts/tardis/default.nix
T
2026-07-07 09:50:44 +01:00

17 lines
225 B
Nix

{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
];
environment.systemPackages = with pkgs; [
firefox
];
services.xserver.enable = true;
networking.hostName = "tardis";
}