nixos/profiles/desktop-dev/default.nix

55 lines
1.2 KiB
Nix
Raw Normal View History

2024-07-28 21:08:02 +02:00
{
config,
lib,
pkgs,
...
}:
2023-04-07 00:31:44 +02:00
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
2024-09-02 23:08:52 +02:00
bruno
2023-04-07 00:31:44 +02:00
chromium
dbeaver-bin
2023-04-07 00:31:44 +02:00
filezilla
fritzing
2024-11-17 00:21:14 +01:00
gnome-font-viewer
2024-09-02 23:08:52 +02:00
inlyne
2023-04-07 00:31:44 +02:00
meld
qgis
sqlitebrowser
(vscode-with-extensions.override {
vscode = vscodium;
vscodeExtensions =
2024-07-28 21:08:02 +02:00
with vscode-extensions;
[
2023-04-07 00:31:44 +02:00
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
pkief.material-icon-theme
2024-11-10 11:56:33 +01:00
hiukky.flate
2024-07-28 21:08:02 +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
];
})
];
};
}