nixos/extra/desktop-development.nix
2022-05-29 18:28:26 +02:00

20 lines
345 B
Nix

{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
arduino
bless # hex editor
chromium
dbeaver
filezilla
fritzing
gnome.gnome-font-viewer
meld
insomnia
qgis
sqlitebrowser
unstable.sublime4
];
}