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

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";
}