"Push new changed"
This commit is contained in:
parent
96651f9f6d
commit
6684283aff
|
@ -38,6 +38,20 @@
|
||||||
# Add open-in-vscode button to nemo
|
# Add open-in-vscode button to nemo
|
||||||
home = {
|
home = {
|
||||||
file.".local/share/nemo/actions/vscode.nemo_action".source = ../vscode.nemo_action;
|
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 = {
|
# home.programs.git = {
|
||||||
|
@ -60,6 +74,11 @@
|
||||||
# with pkgss; [
|
# with pkgss; [
|
||||||
(callPackage ../../modules/applications/discord.nix { })
|
(callPackage ../../modules/applications/discord.nix { })
|
||||||
|
|
||||||
|
zip
|
||||||
|
unzip
|
||||||
|
rar
|
||||||
|
|
||||||
|
minio-client
|
||||||
retroarch
|
retroarch
|
||||||
openconnect-sso
|
openconnect-sso
|
||||||
vlc
|
vlc
|
||||||
|
@ -86,7 +105,6 @@
|
||||||
google-chrome
|
google-chrome
|
||||||
(callPackage ../../modules/pkgs/upwork.nix { inherit runCommandLocal; })
|
(callPackage ../../modules/pkgs/upwork.nix { inherit runCommandLocal; })
|
||||||
(libsForQt5.callPackage ../../modules/pkgs/jellyfin-media-player.nix { })
|
(libsForQt5.callPackage ../../modules/pkgs/jellyfin-media-player.nix { })
|
||||||
# ytmdesktop
|
|
||||||
(callPackage ../../modules/pkgs/ytmdesktop.nix { })
|
(callPackage ../../modules/pkgs/ytmdesktop.nix { })
|
||||||
jetbrains.idea-community
|
jetbrains.idea-community
|
||||||
renderdoc
|
renderdoc
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
peers = [
|
peers = [
|
||||||
{
|
{
|
||||||
publicKey = "KDjqaXNcaWxLvNbOp+pu7TmxjML/uS8pXS5Z+fv7LjM=";
|
publicKey = "4sXpR5H3Qs7ZtvQW4L899+Tb6Se42pEMYZWdFYWRMDE=";
|
||||||
allowedIPs = [ "10.0.0.1/32" ];
|
allowedIPs = [ "10.0.0.1/32" ];
|
||||||
endpoint = homeip + ":2751";
|
endpoint = homeip + ":2751";
|
||||||
persistentKeepalive = 25;
|
persistentKeepalive = 25;
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscode;
|
package = pkgs.vscode;
|
||||||
|
@ -41,6 +43,12 @@
|
||||||
# version = "0.0.25";
|
# version = "0.0.25";
|
||||||
# sha256 = "sha256-CbFZsoRiiwSWL7zJdnBcfrxuhE7E9Au2AlQjqauk+Nc=";
|
# sha256 = "sha256-CbFZsoRiiwSWL7zJdnBcfrxuhE7E9Au2AlQjqauk+Nc=";
|
||||||
# }
|
# }
|
||||||
|
{
|
||||||
|
name = "platformio-ide";
|
||||||
|
publisher = "platformio";
|
||||||
|
version = "3.0.0";
|
||||||
|
sha256 = "sha256-iBc23STY/fqerAIwyEEbRP7L6EJfNBXmpZHidIiMY7g=";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "github-vscode-theme";
|
name = "github-vscode-theme";
|
||||||
publisher = "GitHub";
|
publisher = "GitHub";
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
|
|
||||||
services.xserver.videoDrivers = [ "nvidia" ];
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
|
|
||||||
|
hardware.opengl.enable = true;
|
||||||
|
hardware.opengl.driSupport32Bit = true;
|
||||||
|
|
||||||
# This enables vulkan layers
|
# This enables vulkan layers
|
||||||
# hardware = {
|
# hardware = {
|
||||||
# opengl =
|
# opengl =
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{pkgs, ... }:
|
{pkgs, ... }:
|
||||||
{
|
{
|
||||||
services.udev.extraRules = ''
|
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"
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue