add new software

This commit is contained in:
Felix Schröter 2019-10-03 16:58:57 +02:00
parent 77d2f503b2
commit 1b5a7f111c
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458

View file

@ -1,5 +1,10 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let
unstable = import <nixos-unstable> {
config = removeAttrs config.nixpkgs.config [ "packageOverrides" ];
};
in
{ {
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
@ -56,10 +61,15 @@
programs.firefox.enable = true; programs.firefox.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
# development
haskellPackages.ghc
signal-desktop signal-desktop
discord discord
keybase-gui keybase-gui
steam
linux-steam-integration linux-steam-integration
# lutris # lutris
unstable.ledger-live-desktop
]; ];
} }