23 lines
340 B
Nix
Executable File
23 lines
340 B
Nix
Executable File
{ pkgs, config, ... }:
|
|
{
|
|
imports = [
|
|
./firefox.nix
|
|
./zsh.nix
|
|
./git.nix
|
|
./yubikey.nix
|
|
./java.nix
|
|
./docker.nix
|
|
./wine.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
openssl
|
|
cacert
|
|
appimage-run
|
|
];
|
|
|
|
environment.sessionVariables = {
|
|
SSL_CERT_FILE = "/etc/ssl/certs/ca-bundle.crt";
|
|
};
|
|
}
|