17 lines
212 B
Nix
17 lines
212 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./firefox.nix
|
||
|
./zsh.nix
|
||
|
./git.nix
|
||
|
./yubikey.nix
|
||
|
./java.nix
|
||
|
./docker.nix
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
cacert
|
||
|
appimage-run
|
||
|
];
|
||
|
}
|