2020-10-16 22:31:01 +02:00
|
|
|
{ pkgs }:
|
|
|
|
|
|
|
|
let
|
|
|
|
zshCurried = import ../programs/zsh.nix { inherit pkgs; };
|
|
|
|
in
|
|
|
|
|
2018-10-31 19:52:39 +01:00
|
|
|
{ pkgs
|
2018-11-05 14:31:58 +01:00
|
|
|
, config
|
|
|
|
, ... }:
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
# gitpkgs = import /home/steveej/src/github/NixOS/nixpkgs {};
|
2018-12-17 13:10:06 +01:00
|
|
|
unstablepkgs = import <channels-nixos-unstable> { config = config.nixpkgs.config; };
|
2019-03-31 22:50:58 +02:00
|
|
|
masterpkgs = import <nixpkgs-master> { config = config.nixpkgs.config; };
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
../profiles/common.nix
|
|
|
|
../profiles/qtile-desktop.nix
|
2018-11-04 14:52:52 +01:00
|
|
|
../profiles/dotfiles.nix
|
2018-10-31 19:52:39 +01:00
|
|
|
../programs/firefox.nix
|
|
|
|
../programs/chromium.nix
|
2019-09-06 12:35:14 +02:00
|
|
|
# FIXME: fix homeshick when no WAN connection is available
|
|
|
|
# ../programs/homeshick.nix
|
2018-10-31 19:52:39 +01:00
|
|
|
../programs/libreoffice.nix
|
|
|
|
../programs/neovim.nix
|
|
|
|
../programs/pass.nix
|
2020-10-16 22:31:01 +02:00
|
|
|
zshCurried
|
2020-10-24 13:00:50 +02:00
|
|
|
../programs/podman.nix
|
2020-12-05 02:10:57 +01:00
|
|
|
../programs/vscode
|
2018-10-31 19:52:39 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
nixpkgs.config = {
|
|
|
|
pidgin = {
|
|
|
|
openssl = true;
|
|
|
|
gnutls = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
packageOverrides = pkgs: with pkgs; {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
2018-11-03 11:03:03 +01:00
|
|
|
# TODO: find a way to prevent using a store path for the current file
|
|
|
|
# HM_CONFIG_PATH=builtins.toString "${./.}";
|
2018-11-03 19:33:58 +01:00
|
|
|
HM_CONFIG="graphical-fullblown";
|
2018-11-03 11:03:03 +01:00
|
|
|
|
2018-10-31 19:52:39 +01:00
|
|
|
GOPATH="$HOME/src/go";
|
|
|
|
|
2018-11-03 18:43:22 +01:00
|
|
|
PATH=pkgs.lib.concatStringsSep ":" [
|
2018-10-31 19:52:39 +01:00
|
|
|
"$HOME/.local/bin"
|
|
|
|
"$PATH"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = []
|
|
|
|
++ (with pkgs; [
|
|
|
|
# Authentication
|
|
|
|
cacert
|
|
|
|
fprintd
|
|
|
|
openssl
|
|
|
|
mkpasswd
|
|
|
|
|
|
|
|
# Nix package related tools
|
|
|
|
patchelf
|
|
|
|
nix-index
|
|
|
|
nox
|
|
|
|
nix-prefetch-scripts
|
2019-02-03 13:00:25 +01:00
|
|
|
nix-prefetch-github
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Version Control Systems
|
2019-10-31 11:12:37 +01:00
|
|
|
pijul
|
2018-10-31 19:52:39 +01:00
|
|
|
gitless
|
|
|
|
gitRepo
|
2018-11-19 02:07:07 +01:00
|
|
|
git-lfs
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Process/System Administration
|
|
|
|
htop
|
|
|
|
gnome3.gnome-tweak-tool
|
|
|
|
xorg.xhost
|
|
|
|
dmidecode
|
|
|
|
evtest
|
|
|
|
|
|
|
|
# Archive Managers
|
|
|
|
sshfsFuse
|
|
|
|
xarchive
|
|
|
|
p7zip
|
|
|
|
zip
|
|
|
|
unzip
|
|
|
|
gzip
|
|
|
|
lzop
|
|
|
|
|
|
|
|
# Password Management
|
|
|
|
gnupg
|
2019-01-16 20:50:26 +01:00
|
|
|
yubikey-manager
|
2021-06-08 12:39:01 +02:00
|
|
|
yubikey-manager-qt
|
2018-10-31 19:52:39 +01:00
|
|
|
yubikey-personalization
|
|
|
|
yubikey-personalization-gui
|
|
|
|
gnome3.gnome_keyring
|
|
|
|
gnome3.seahorse
|
|
|
|
|
|
|
|
# Language Support
|
|
|
|
hunspellDicts.en-us
|
|
|
|
hunspellDicts.de-de
|
|
|
|
|
|
|
|
# Messaging/Communication
|
2020-02-29 10:08:58 +01:00
|
|
|
signal-desktop
|
2018-10-31 19:52:39 +01:00
|
|
|
pidgin
|
|
|
|
hexchat
|
|
|
|
aspellDicts.en
|
|
|
|
aspellDicts.de
|
2020-09-14 19:40:36 +02:00
|
|
|
skype
|
2020-09-28 10:36:07 +02:00
|
|
|
unstablepkgs.jitsi-meet-electron
|
2021-04-24 08:16:36 +02:00
|
|
|
unstablepkgs.zoom-us
|
2018-10-31 19:52:39 +01:00
|
|
|
thunderbird
|
2021-06-08 12:39:01 +02:00
|
|
|
evolution # gnome4.glib_networking
|
2021-12-06 20:23:00 +01:00
|
|
|
unstablepkgs.kotatogram-desktop
|
2018-10-31 19:52:39 +01:00
|
|
|
gnome3.cheese
|
2021-05-24 19:52:22 +02:00
|
|
|
discord
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Virtualization
|
2019-07-17 09:48:49 +02:00
|
|
|
virtmanager
|
2020-10-18 20:20:46 +02:00
|
|
|
# (pkgs.lib.hiPrio qemu)
|
2018-10-31 19:52:39 +01:00
|
|
|
# virtualbox
|
2020-10-18 20:20:46 +02:00
|
|
|
# vagrant
|
|
|
|
# docker_compose
|
2018-10-31 19:52:39 +01:00
|
|
|
# unstablepkgs.kubernetes
|
2020-10-18 20:20:46 +02:00
|
|
|
# unstablepkgs.minikube
|
|
|
|
# unstablepkgs.openshift
|
2018-10-31 19:52:39 +01:00
|
|
|
# (unstablepkgs.minikube.overrideAttrs (oldAttrs: {
|
|
|
|
# patches = oldAttrs.patches ++ [
|
|
|
|
# (builtins.fetchurl { url ="https://patch-diff.githubusercontent.com/raw/kubernetes/minikube/pull/2517.diff"; })
|
|
|
|
# ];
|
|
|
|
# }))
|
2020-11-22 21:21:16 +01:00
|
|
|
appimage-run
|
|
|
|
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Remote Control Tools
|
|
|
|
remmina
|
|
|
|
freerdp
|
|
|
|
teamviewer
|
|
|
|
|
|
|
|
# Audio/Video Players
|
|
|
|
ffmpeg
|
|
|
|
vlc
|
|
|
|
audacity
|
|
|
|
spotify
|
2022-01-15 20:34:30 +01:00
|
|
|
youtube-dl-light
|
2020-06-10 21:14:53 +02:00
|
|
|
libwebcam
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Network Tools
|
|
|
|
openvpn
|
|
|
|
tcpdump
|
|
|
|
iftop
|
|
|
|
iperf
|
|
|
|
bind
|
2018-11-03 18:43:22 +01:00
|
|
|
socat
|
2019-03-06 00:05:12 +01:00
|
|
|
# 2019-03-05: broken on 19.03 linssid
|
2019-01-16 20:50:26 +01:00
|
|
|
iptraf-ng
|
2019-03-03 00:15:02 +01:00
|
|
|
ipmitool
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# samba
|
|
|
|
iptables
|
|
|
|
nftables
|
|
|
|
wireshark
|
|
|
|
|
|
|
|
# Code Editors
|
2020-10-18 20:20:46 +02:00
|
|
|
# unstablepkgs.atom
|
2018-10-31 19:52:39 +01:00
|
|
|
xclip
|
|
|
|
xsel
|
|
|
|
|
|
|
|
# Image/Graphic/Design Tools
|
|
|
|
gnome3.eog
|
|
|
|
gimp
|
|
|
|
imagemagick
|
|
|
|
exiv2
|
|
|
|
graphviz
|
|
|
|
inkscape
|
2020-09-04 11:46:29 +02:00
|
|
|
# barcode
|
2018-10-31 19:52:39 +01:00
|
|
|
qrencode
|
|
|
|
zbar
|
|
|
|
feh
|
|
|
|
# digikam
|
|
|
|
|
|
|
|
|
|
|
|
# Modelling Tools
|
2018-11-20 13:44:32 +01:00
|
|
|
# plantuml
|
|
|
|
# umlet
|
2020-09-04 11:46:29 +02:00
|
|
|
# staruml
|
2018-11-20 13:44:32 +01:00
|
|
|
# eclipses.eclipse-modeling
|
|
|
|
# dia
|
|
|
|
# astah-community
|
2018-11-03 18:43:22 +01:00
|
|
|
|
2018-10-31 19:52:39 +01:00
|
|
|
# Misc Development Tools
|
|
|
|
qrcode
|
2020-10-18 20:20:46 +02:00
|
|
|
# travis
|
2018-10-31 19:52:39 +01:00
|
|
|
jq
|
2020-10-18 20:20:46 +02:00
|
|
|
# prometheus
|
2018-10-31 19:52:39 +01:00
|
|
|
cdrtools
|
|
|
|
|
|
|
|
# Document Processing and Management
|
2020-10-18 20:20:46 +02:00
|
|
|
# zathura
|
2018-10-31 19:52:39 +01:00
|
|
|
mendeley
|
2020-10-18 20:20:46 +02:00
|
|
|
# zotero
|
2018-10-31 19:52:39 +01:00
|
|
|
pandoc
|
2022-02-17 23:58:08 +01:00
|
|
|
|
|
|
|
# has an EOL version of electron
|
|
|
|
# obsidian
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# LaTeX
|
|
|
|
perlPackages.YAMLTiny
|
|
|
|
perlPackages.FileHomeDir
|
|
|
|
perlPackages.UnicodeLineBreak
|
|
|
|
(texlive.combine {
|
2018-11-03 18:43:22 +01:00
|
|
|
inherit (texlive)
|
2018-10-31 19:52:39 +01:00
|
|
|
scheme-small
|
|
|
|
texlive-de
|
|
|
|
texlive-en
|
|
|
|
texlive-scripts
|
2018-11-03 18:43:22 +01:00
|
|
|
collection-langgerman
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
latexindent
|
|
|
|
latexmk
|
|
|
|
|
|
|
|
algorithms
|
|
|
|
cm-super
|
|
|
|
|
|
|
|
preprint
|
|
|
|
enumitem
|
|
|
|
draftwatermark
|
|
|
|
everypage
|
|
|
|
ulem
|
|
|
|
placeins
|
|
|
|
minted ifplatform fvextra xstring framed
|
|
|
|
;
|
|
|
|
})
|
|
|
|
|
|
|
|
pdftk
|
2021-04-24 08:16:36 +02:00
|
|
|
# broken as of 2021-04-24
|
|
|
|
# masterpdfeditor
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# File Synchronzation
|
2021-04-24 08:16:36 +02:00
|
|
|
# seafile-client
|
|
|
|
# grive2
|
2022-01-03 21:03:13 +01:00
|
|
|
dropbox
|
2018-10-31 19:52:39 +01:00
|
|
|
rsync
|
|
|
|
|
|
|
|
# Filesystem Tools
|
|
|
|
ntfs3g
|
|
|
|
ddrescue
|
|
|
|
ncdu
|
2018-11-20 13:44:32 +01:00
|
|
|
woeusb
|
2018-10-31 19:52:39 +01:00
|
|
|
unetbootin
|
|
|
|
pcmanfm
|
|
|
|
hdparm
|
|
|
|
testdisk
|
2022-01-15 20:34:30 +01:00
|
|
|
binwalk
|
2018-10-31 19:52:39 +01:00
|
|
|
gptfdisk
|
2019-01-28 15:52:42 +01:00
|
|
|
gparted
|
2020-11-22 21:21:16 +01:00
|
|
|
smartmontools
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
## Android
|
2019-03-06 15:57:20 +01:00
|
|
|
androidenv.androidPkgs_9_0.platform-tools
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
## Python
|
2020-09-04 11:46:29 +02:00
|
|
|
myPython
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Code generators
|
2020-10-18 20:20:46 +02:00
|
|
|
# unstablepkgs.swagger-codegen
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Misc Desktop Tools
|
2020-03-13 08:57:12 +01:00
|
|
|
# TODO: this may be required if brightness control isn't working
|
|
|
|
# brightnessctl
|
2018-10-31 19:52:39 +01:00
|
|
|
ltunify
|
2019-11-06 12:26:35 +01:00
|
|
|
# solaar # TODO: conflicts with solar over udev rules
|
2018-10-31 19:52:39 +01:00
|
|
|
dex
|
|
|
|
# kitty
|
2018-11-03 18:43:22 +01:00
|
|
|
busyboxStatic
|
2018-10-31 19:52:39 +01:00
|
|
|
xorg.xbacklight
|
|
|
|
coreutils
|
|
|
|
lsof
|
|
|
|
x11_ssh_askpass
|
|
|
|
xdotool
|
|
|
|
xdg_utils
|
|
|
|
xdg-user-dirs
|
|
|
|
gnome3.dconf
|
|
|
|
picocom
|
|
|
|
glib.dev # contains gdbus tool
|
2019-07-17 10:02:36 +02:00
|
|
|
alacritty
|
2020-10-17 15:25:47 +02:00
|
|
|
unstablepkgs.wally-cli
|
2020-09-04 11:46:29 +02:00
|
|
|
man-pages
|
2018-10-31 19:52:39 +01:00
|
|
|
|
|
|
|
# Screen recording
|
2018-11-20 13:44:32 +01:00
|
|
|
# gtk-recordmydesktop # can't select the window
|
|
|
|
# qt-recordmydesktop
|
|
|
|
# vokoscreen
|
|
|
|
# shutter
|
2018-10-31 19:52:39 +01:00
|
|
|
# kazam # doesn't start
|
|
|
|
# xvidcap # doesn't keep the recording rectangle
|
|
|
|
obs-studio
|
2020-10-18 20:20:46 +02:00
|
|
|
screenkey
|
2018-11-20 13:44:32 +01:00
|
|
|
# shotcut
|
|
|
|
# openshot-qt
|
2020-11-19 20:46:30 +01:00
|
|
|
|
2021-01-07 19:39:54 +01:00
|
|
|
unstablepkgs.ledger-live-desktop
|
2018-11-03 18:43:22 +01:00
|
|
|
]);
|
2018-10-31 19:52:39 +01:00
|
|
|
}
|