Compare commits

...

3 commits

Author SHA1 Message Date
ab9535556b add bluetooth support 2020-10-20 11:44:51 +02:00
91a4d2a516 add pv and sysstat 2020-10-20 11:35:15 +02:00
7e3f939ed3 add whois 2020-10-20 11:35:15 +02:00
3 changed files with 8 additions and 2 deletions

View file

@ -4,9 +4,10 @@ let
unstable = import <nixos-unstable> {};
in {
environment.systemPackages = with pkgs; [
kubectl
cryptsetup
kubectl
unstable.kubernetes-helm
whois
# podman
conmon

View file

@ -16,12 +16,14 @@ in {
jq
ncdu
openssl
pv
ripgrep
sysstat
tcpdump
tmux
unzip
wget
z-lua
unzip
unstable.starship
(import ../packages/neovim.nix)
];

View file

@ -104,6 +104,9 @@ in {
)
];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
services.gvfs = {
enable = true;
package = lib.mkForce pkgs.gnome3.gvfs;