nixos/extra/desktop-development.nix

20 lines
333 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
2020-11-16 21:14:46 +01:00
{
environment.systemPackages = with pkgs; [
arduino
bless # hex editor
chromium
dbeaver
filezilla
fritzing
gnome.gnome-font-viewer
2021-07-22 14:42:03 +02:00
gnome.meld
2020-11-16 21:14:46 +01:00
insomnia
qgis
unstable.sublime4
2020-11-16 21:14:46 +01:00
];
}