15 lines
290 B
Nix
15 lines
290 B
Nix
|
# 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
|
||
|
];
|
||
|
}
|