summaryrefslogtreecommitdiff
path: root/hosts/kay/configuration.nix
blob: da92a837b1268f4955c4ebe43f631dd0721522c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:

{
  imports = [
    ./hardware-configuration.nix
    ../../common.nix
  ];

  networking.hostName = "kay";
  environment.systemPackages = with pkgs; [ tmux ];
}