mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-12-06 05:06:34 +00:00
15 lines
259 B
Nix
15 lines
259 B
Nix
{
|
|
imports = [
|
|
(fetchTarball "https://github.com/msteen/nixos-vscode-server/tarball/master")
|
|
];
|
|
|
|
services.vscode-server.enable = true;
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
pinentryFlavor = "curses";
|
|
};
|
|
|
|
}
|