Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nvim 0.7, disable window picker for nvim-tree, remove legacy pulseaud… #11

Merged
merged 1 commit into from
Apr 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion hardware/pulseaudio.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ in
pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull; # JACK support, Bluetooth
extraModules = [ pkgs.pulseaudio-modules-bt ];
# auto-switch to bluetooth headset
extraConfig = lib.mkDefault "load-module module-switch-on-connect";
};
Expand Down
2 changes: 1 addition & 1 deletion packages/3d-print.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

# programmatic cads
openscad
libfive
# libfive
];
}
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This repo is just a bunch of NixOS modules, so you can pick or override anything

## Hardware Engineering

* programmatic cads: libfive, openscad
* programmatic cads: openscad
* slicers for 3d printer: prusa-slicer, cura
* circuit diagrams: librepcb, fritzing
* [platformio-cli](https://jeelabs.org/2018/getting-started-bp/)
Expand Down
2 changes: 1 addition & 1 deletion services/vpn/surfshark/de-ber.prod.surfshark.com_udp.ovpn
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ reneg-sec 0

remote-cert-tls server

auth-user-pass /etc/nixos/services/vpn/surfshark/auth.txt /etc/nixos/services/vpn/surfshark/auth.txt
auth-user-pass /etc/nixos/services/vpn/surfshark/auth.txt

#comp-lzo
verb 3
Expand Down
2 changes: 1 addition & 1 deletion services/vpn/surfshark/fr-par.prod.surfshark.com_udp.ovpn
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ reneg-sec 0

remote-cert-tls server

auth-user-pass /etc/nixos/services/vpn/surfshark/auth.txt /etc/nixos/services/vpn/surfshark/auth.txt
auth-user-pass /etc/nixos/services/vpn/surfshark/auth.txt

#comp-lzo
verb 3
Expand Down
2 changes: 1 addition & 1 deletion services/vpn/surfshark/uk-lon.prod.surfshark.com_udp.ovpn
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ reneg-sec 0

remote-cert-tls server

auth-user-pass /etc/nixos/services/vpn/surfshark/auth.txt /etc/nixos/services/vpn/surfshark/auth.txt
auth-user-pass /etc/nixos/services/vpn/surfshark/auth.txt

#comp-lzo
verb 3
Expand Down
3 changes: 2 additions & 1 deletion sys/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@

# nix
e = "nvim /etc/nixos/configuration.nix";
b = "sudo nixos-rebuild switch --keep-going";
# hack for https://github.com/NixOS/nixpkgs/issues/169193
b = "nixos-rebuild switch --use-remote-sudo";
search = "nix search nixpkgs";
wipe-user-packages = "nix-env -e '*'";
nix-gc = "sudo nix-collect-garbage --delete-older-than 30d";
Expand Down
Loading