blob: f35aff2f05e8500ea6599cc88d7249f32b494987 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ pkgs, ... }:
{
imports = [
./hardware
./networking
./security
./software
./variables
./locale.nix
];
environment.systemPackages = with pkgs; [
vim
wget
git
];
}
|