1
0
Fork 0
nixos-config/home/snippets/graphical.nix
2018-02-08 23:16:23 +01:00

21 lines
568 B
Nix

{ pkgs, ... }:
let
unstable = import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {};
tasktree = with pkgs; with rustPlatform; buildRustPackage rec {
name = "tasktree";
version = "0.1.0";
src = ~/data/aktuell/it/code/tasktree;
depsSha256 = "";
cargoSha256 = "";
buildInputs = [ gnome3.gtk atk cairo gdk_pixbuf glib pango ];
};
in {
home.packages = with pkgs; [
vimPlugins.vimtex
redshift
python27Packages.syncthing-gtk
rxvt_unicode
tasktree
gnome3.gnome_terminal
];
}