nixos/extra/desktop-development.nix
2021-08-10 18:01:49 +02:00

20 lines
351 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
gnome.meld
insomnia
qgis
sqlitebrowser
unstable.sublime4
];
}