nixos/extra/desktop-development.nix

19 lines
306 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
2021-05-16 10:01:58 +02:00
gnome3.meld
2020-11-16 21:14:46 +01:00
insomnia
qgis
unstable.sublime4
2020-11-16 21:14:46 +01:00
];
}