1
1
Fork 0
nixos-configs/modules/unstable-vscode.nix

15 lines
290 B
Nix
Raw Normal View History

2024-11-12 03:03:13 +00:00
# Flake inputs
{ inputs, ... }:
# Module inputs
{ ... }:
let
pkgs = import inputs.nixpkgs-unstable { system = "x86_64-linux"; config.allowUnfree = true; };
in {
virtualisation.docker.enable = true;
environment.systemPackages = [
pkgs.distrobox
pkgs.vscode
pkgs.icu
];
}