mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 15:54:58 +08:00
11 lines
301 B
Nix
11 lines
301 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
|
|
../../../nixos/docker.nix
|
|
];
|
|
|
|
programs.nix-ld.enable = true; # For vscode-server
|
|
}
|