"Push new changed"

This commit is contained in:
SeanOMik 2023-02-18 16:11:34 -05:00
parent 96651f9f6d
commit 6684283aff
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
5 changed files with 33 additions and 3 deletions

View File

@ -38,6 +38,20 @@
# Add open-in-vscode button to nemo
home = {
file.".local/share/nemo/actions/vscode.nemo_action".source = ../vscode.nemo_action;
# activation = {
# afterWriteBoundary = {
# after = [ "writeBoundary" ];
# before = [ ];
# data = ''
# find ~/.vscode/extensions/ | while read -r path
# do
# $DRY_RUN_CMD chmod --recursive +w \
# "$(readlink --canonicalize "$path")"
# done
# '';
# };
# };
};
# home.programs.git = {
@ -60,6 +74,11 @@
# with pkgss; [
(callPackage ../../modules/applications/discord.nix { })
zip
unzip
rar
minio-client
retroarch
openconnect-sso
vlc
@ -86,7 +105,6 @@
google-chrome
(callPackage ../../modules/pkgs/upwork.nix { inherit runCommandLocal; })
(libsForQt5.callPackage ../../modules/pkgs/jellyfin-media-player.nix { })
# ytmdesktop
(callPackage ../../modules/pkgs/ytmdesktop.nix { })
jetbrains.idea-community
renderdoc

View File

@ -12,7 +12,7 @@
peers = [
{
publicKey = "KDjqaXNcaWxLvNbOp+pu7TmxjML/uS8pXS5Z+fv7LjM=";
publicKey = "4sXpR5H3Qs7ZtvQW4L899+Tb6Se42pEMYZWdFYWRMDE=";
allowedIPs = [ "10.0.0.1/32" ];
endpoint = homeip + ":2751";
persistentKeepalive = 25;

View File

@ -1,5 +1,7 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscode;
@ -41,6 +43,12 @@
# version = "0.0.25";
# sha256 = "sha256-CbFZsoRiiwSWL7zJdnBcfrxuhE7E9Au2AlQjqauk+Nc=";
# }
{
name = "platformio-ide";
publisher = "platformio";
version = "3.0.0";
sha256 = "sha256-iBc23STY/fqerAIwyEEbRP7L6EJfNBXmpZHidIiMY7g=";
}
{
name = "github-vscode-theme";
publisher = "GitHub";

View File

@ -4,6 +4,9 @@
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.opengl.driSupport32Bit = true;
# This enables vulkan layers
# hardware = {
# opengl =

View File

@ -1,6 +1,7 @@
{pkgs, ... }:
{
services.udev.extraRules = ''
SUBSYSTEMS=="usb", ATTRS{manufacturer}=="NVIDIA Corp.", ATTRS{product}=="APX", GROUP="nintendo_switch"
SUBSYSTEM=="usb", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="3000", MODE="0666"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7321", MODE="0666"
'';
}