mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-01 03:55:26 +08:00
12 lines
308 B
Nix
12 lines
308 B
Nix
# Stuff I need for development (not required for CI per se)
|
|
{ flake, ... }: {
|
|
imports = [
|
|
flake.inputs.self.nixosModules.home-manager
|
|
flake.inputs.self.nixosModules.my-home
|
|
../../nixos/nix.nix
|
|
];
|
|
|
|
programs.nix-ld.enable = true; # For vscode-server
|
|
|
|
virtualisation.docker.enable = true;
|
|
}
|