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

19 lines
333 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
unstable.sublime4
];
}