nixos/profiles/desktop-dev/default.nix

48 lines
1.2 KiB
Nix
Raw Normal View History

2023-04-07 00:31:44 +02:00
{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.desktop-dev;
in
{
options.my.profiles.desktop-dev = with lib; {
enable = mkEnableOption "desktop-dev profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
bless # hex editor
chromium
dbeaver
filezilla
fritzing
gnome.gnome-font-viewer
meld
2023-11-13 20:21:58 +01:00
bruno
2023-04-07 00:31:44 +02:00
qgis
sqlitebrowser
(vscode-with-extensions.override {
vscode = vscodium;
vscodeExtensions =
with vscode-extensions; [
bbenoist.nix
editorconfig.editorconfig
2023-12-28 21:12:37 +01:00
github.copilot
2023-04-07 00:31:44 +02:00
mkhl.direnv
ms-azuretools.vscode-docker
ms-python.python
ms-vscode-remote.remote-ssh
] ++ [
# remove in 24.05
unstable.vscode-extensions.equinusocio.vsc-material-theme
2023-04-07 00:31:44 +02:00
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
2023-06-01 00:09:26 +02:00
# {
# name = "vsc-material-theme";
# publisher = "Equinusocio";
# version = "33.8.0";
# sha256 = "sha256-+I4AUwsrElT62XNvmuAC2iBfHfjNYY0bmAqzQvfwUYM=";
# }
2023-04-07 00:31:44 +02:00
];
})
];
};
}