|
# 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
|
|
];
|
|
}
|