2017-10-16 22:53:49 +02:00
|
|
|
# This file contains configuration for packages to install.
|
|
|
|
# It does not contain configuration for software that is already covered
|
|
|
|
# by other NixOS options (e.g. emacs)
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2018-04-22 13:17:30 +02:00
|
|
|
let
|
2018-04-22 13:37:50 +02:00
|
|
|
fetchChannel = { rev, sha256 }: import (fetchTarball {
|
|
|
|
inherit sha256;
|
|
|
|
url = "https://github.com/NixOS/nixpkgs-channels/archive/${rev}.tar.gz";
|
|
|
|
}) { config.allowUnfree = true; };
|
|
|
|
|
2018-05-27 20:11:11 +02:00
|
|
|
# Channels last updated: 2014-05-26
|
2018-04-22 13:17:30 +02:00
|
|
|
|
2018-04-22 13:38:17 +02:00
|
|
|
# Instead of relying on Nix channels and ending up with out-of-sync
|
|
|
|
# situations between machines, the commit for the stable Nix channel
|
|
|
|
# is pinned here.
|
|
|
|
stable = fetchChannel {
|
2018-05-27 20:11:11 +02:00
|
|
|
rev = "2f6440eb09b7e6e3322720ac91ce7e2cdeb413f9";
|
|
|
|
sha256 = "0vb7ikjscrp2rw0dfw6pilxqpjm50l5qg2x2mn1vfh93dkl2aan7";
|
2018-04-22 13:38:17 +02:00
|
|
|
};
|
2018-04-22 13:17:30 +02:00
|
|
|
|
2018-05-27 20:11:11 +02:00
|
|
|
# Certain packages from unstable are hand-picked into the package
|
|
|
|
# set.
|
2018-04-22 13:37:50 +02:00
|
|
|
unstable = fetchChannel {
|
2018-05-27 20:11:11 +02:00
|
|
|
rev = "5da85431fb1df4fb3ac36730b2591ccc9bdf5c21";
|
|
|
|
sha256 = "0pc15wh5al9dmhcj29gwqir3wzpyk2nrplibr5xjk2bdvw6sv6c1";
|
2018-04-22 13:37:50 +02:00
|
|
|
};
|
2017-10-16 22:53:49 +02:00
|
|
|
in {
|
|
|
|
# Configure the Nix package manager
|
2018-03-04 22:08:07 +01:00
|
|
|
nixpkgs = {
|
|
|
|
config.allowUnfree = true;
|
2018-04-22 13:38:17 +02:00
|
|
|
# To use the pinned channel, the original package set is thrown
|
|
|
|
# away in the overrides:
|
|
|
|
config.packageOverrides = oldPkgs: stable // {
|
2018-03-04 22:08:07 +01:00
|
|
|
wallpapers = import ./pkgs/wallpapers.nix;
|
2018-04-22 13:17:30 +02:00
|
|
|
pulseaudio-ctl = import pkgs/pulseaudio-ctl.nix;
|
|
|
|
|
|
|
|
kontemplate = unstable.kontemplate;
|
|
|
|
mq-cli = unstable.mq-cli;
|
|
|
|
|
2018-05-01 16:07:02 +02:00
|
|
|
# Override various Emacs packages from unstable:
|
2018-05-07 14:43:47 +02:00
|
|
|
pinnedEmacs = with unstable.emacsPackagesNg; {
|
2018-05-08 23:44:34 +02:00
|
|
|
inherit
|
|
|
|
company-lsp
|
|
|
|
counsel
|
|
|
|
counsel-tramp
|
|
|
|
exwm
|
|
|
|
ivy
|
|
|
|
ivy-gitlab
|
|
|
|
ivy-hydra
|
|
|
|
ivy-pass
|
|
|
|
lsp-mode
|
|
|
|
lsp-rust
|
|
|
|
lsp-ui
|
|
|
|
markdown-mode
|
2018-05-24 08:16:59 +02:00
|
|
|
markdown-toc
|
2018-05-08 23:44:34 +02:00
|
|
|
swiper;
|
2018-05-07 14:40:31 +02:00
|
|
|
};
|
2018-03-04 22:08:07 +01:00
|
|
|
};
|
|
|
|
};
|
2017-10-16 22:53:49 +02:00
|
|
|
|
|
|
|
# ... and declare packages to be installed.
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# Default nixos.* packages:
|
|
|
|
alacritty
|
2018-04-24 23:58:03 +02:00
|
|
|
binutils-unwrapped
|
2018-05-27 20:11:11 +02:00
|
|
|
cargo
|
2017-10-16 22:53:49 +02:00
|
|
|
curl
|
|
|
|
direnv
|
2017-10-25 17:20:24 +02:00
|
|
|
dnsutils
|
2018-05-05 12:28:40 +02:00
|
|
|
evince
|
2017-10-16 22:53:49 +02:00
|
|
|
exa
|
|
|
|
fd
|
2018-05-05 12:28:40 +02:00
|
|
|
file
|
|
|
|
firefox-unwrapped
|
2017-10-16 22:53:49 +02:00
|
|
|
fish
|
|
|
|
gcc
|
|
|
|
git
|
2017-10-31 00:45:57 +01:00
|
|
|
gnome3.dconf
|
2017-10-30 00:30:12 +01:00
|
|
|
gnome3.evolution
|
2017-10-31 00:45:57 +01:00
|
|
|
gnome3.glib_networking
|
2017-10-16 22:53:49 +02:00
|
|
|
gnumake
|
|
|
|
gnupg
|
2017-10-17 01:18:18 +02:00
|
|
|
google-cloud-sdk
|
2018-04-04 17:10:12 +02:00
|
|
|
gopass
|
2017-10-16 22:53:49 +02:00
|
|
|
htop
|
|
|
|
i3lock
|
2017-10-20 20:23:08 +02:00
|
|
|
iftop
|
2018-05-27 20:11:11 +02:00
|
|
|
# Upstream link is down:
|
|
|
|
# jetbrains.idea-ultimate
|
2017-10-19 01:48:27 +02:00
|
|
|
jq
|
2018-04-22 13:17:30 +02:00
|
|
|
kontemplate
|
2018-04-24 23:58:03 +02:00
|
|
|
kubernetes
|
2017-11-24 09:28:05 +01:00
|
|
|
lispPackages.quicklisp
|
2017-10-16 22:53:49 +02:00
|
|
|
lxappearance-gtk3
|
|
|
|
manpages
|
2017-10-18 15:16:28 +02:00
|
|
|
maven
|
2018-04-22 13:17:30 +02:00
|
|
|
mq-cli
|
2018-05-05 12:28:40 +02:00
|
|
|
ngrok
|
2017-10-17 15:59:08 +02:00
|
|
|
nixops
|
2018-04-24 23:58:03 +02:00
|
|
|
numix-cursor-theme
|
2017-10-16 22:53:49 +02:00
|
|
|
numix-gtk-theme
|
|
|
|
numix-icon-theme
|
|
|
|
openjdk
|
2017-10-18 15:33:08 +02:00
|
|
|
openssl
|
2017-11-06 22:14:26 +01:00
|
|
|
openssl.dev
|
2017-10-16 22:53:49 +02:00
|
|
|
pass
|
|
|
|
pavucontrol
|
2017-10-31 00:45:57 +01:00
|
|
|
pkgconfig
|
2018-04-24 23:58:03 +02:00
|
|
|
pulseaudio-ctl
|
2018-05-05 12:28:40 +02:00
|
|
|
pwgen
|
2017-11-02 16:50:46 +01:00
|
|
|
qjackctl
|
2017-10-16 22:53:49 +02:00
|
|
|
ripgrep
|
2018-05-07 14:23:54 +02:00
|
|
|
rustup
|
2017-11-24 09:28:05 +01:00
|
|
|
sbcl
|
2018-05-05 12:28:40 +02:00
|
|
|
screen
|
|
|
|
siege
|
2017-10-16 22:53:49 +02:00
|
|
|
spotify
|
|
|
|
stdmanpages
|
|
|
|
tdesktop
|
2018-05-27 20:13:03 +02:00
|
|
|
terraform
|
2017-10-16 22:53:49 +02:00
|
|
|
tig
|
|
|
|
tmux
|
2018-05-05 12:28:40 +02:00
|
|
|
tokei
|
|
|
|
transmission
|
2017-10-16 22:53:49 +02:00
|
|
|
tree
|
2018-05-05 12:28:40 +02:00
|
|
|
units
|
2017-10-16 22:53:49 +02:00
|
|
|
unzip
|
2018-05-05 12:28:40 +02:00
|
|
|
vlc
|
2017-10-16 22:53:49 +02:00
|
|
|
xclip
|
|
|
|
xfce.xfce4-screenshooter
|
|
|
|
|
2018-03-04 19:32:19 +01:00
|
|
|
# Haskell packages:
|
|
|
|
cabal-install
|
|
|
|
ghc
|
|
|
|
hlint
|
|
|
|
stack
|
|
|
|
stack2nix
|
|
|
|
haskellPackages.intero
|
|
|
|
haskellPackages.stylish-haskell
|
|
|
|
haskellPackages.yesod-bin
|
2017-10-16 22:53:49 +02:00
|
|
|
];
|
|
|
|
}
|