summaryrefslogtreecommitdiff
path: root/modules/pc/default.nix
blob: aea7e407413f1a6dd7edc8100444c7328a7d9b9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs, ... }:
{
  imports = [
    ./hardware
    ./networking
    ./security
    ./services
    ./software
    ./variables
    ./locale.nix
  ];

  environment.systemPackages = with pkgs; [
    vim
    wget
    git
  ];
}