nixos/extra/desktop-development.nix
2021-07-22 14:41:38 +02:00

19 lines
334 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
gnome3.meld
insomnia
qgis
unstable.sublime4
];
}