flakes/modules/nixos/core-desktop.nix
Chinmay D. Pai 3a708c2a76
chore: cleanup and update flakes
Signed-off-by: Chinmay D. Pai <chinmay.pai@zerodha.com>
2023-10-16 22:36:44 +05:30

28 lines
364 B
Nix

{
lib,
pkgs,
...
}: {
imports = [
./core-server.nix
../commons
];
environment.shells = with pkgs; [
bash
fish
];
environment.systemPackages = with pkgs; [
devenv
];
programs = {
adb.enable = true;
ssh.startAgent = true;
dconf.enable = true;
};
services.udev.packages = with pkgs; [android-udev-rules];
}