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> {}; unstable = import <nixos-unstable> {};
in { in {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
kubectl
cryptsetup cryptsetup
kubectl
unstable.kubernetes-helm unstable.kubernetes-helm
whois
# podman # podman
conmon conmon

View file

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

View file

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