minore changes

This commit is contained in:
Vivian 2022-10-22 13:15:03 +02:00
parent ea5ec8c6ef
commit 9b1cc552d5
5 changed files with 24 additions and 0 deletions

View file

@ -57,6 +57,7 @@ in {
wf-recorder # Screenrecorder
wl-clipboard # Clipboard manager
wofi # Wayland rofi
wpa_gui
];
xdg.mimeApps = {
@ -154,6 +155,7 @@ in {
ms-vscode-remote.remote-ssh
ms-vscode.cpptools
platformio.platformio-ide
redhat.vscode-yaml
tamasfe.even-better-toml
valentjn.vscode-ltex
vscodevim.vim

View file

@ -36,6 +36,9 @@
"wired" = {
psk = "@WIRED_PASSWORD@";
};
"meowy hotspot" = {
psk = "@HOTSPOT_PASSWORD@";
};
};
};

View file

@ -16,6 +16,12 @@ stdenvNoCC.mkDerivation {
FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ ]; };
buildPhase = ''
mv src src_orig
mkdir src
mv src_orig/Catppuccin-Frappe-Pink-Cursors ./src/
mv src_orig/cursorList ./src/
mv src_orig/config ./src/
mv src_orig/_svgo.yml ./src/
HOME="$NIX_BUILD_ROOT" PREFIX="/" DESTDIR=$out make build
'';

View file

@ -21,6 +21,9 @@ final: prev: {
vscode-extensions = {
platformio.platformio-ide =
prev.callPackage ./vscode-extensions/platformio.nix { };
# ms-vscode.live-server =
# prev.callPackage ./vscode-extensions/live-server.nix;
};
};
}

View file

@ -0,0 +1,10 @@
{ vscode-utils, lib }:
let inherit (vscode-utils) buildVscodeMarketplaceExtension;
in buildVscodeMarketplaceExtension {
mktplcRef = {
name = "live-server";
publisher = "ms-vscode";
version = "0.5.2022102001";
sha256 = lib.fakeSha256;
};
}