mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
18 lines
306 B
Nix
18 lines
306 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
|
|
gnome3.meld
|
|
insomnia
|
|
qgis
|
|
unstable.sublime4
|
|
];
|
|
}
|