mmmm updates

This commit is contained in:
Vivian 2022-10-23 23:41:12 +02:00
parent cc3c5957b4
commit 597e6ddbba
5 changed files with 37 additions and 25 deletions

View file

@ -41,6 +41,7 @@ in {
libnotify
neofetch
nixpkgs-review
mullvad-vpn
plex-media-player
plexamp
python3
@ -57,7 +58,7 @@ in {
wf-recorder # Screenrecorder
wl-clipboard # Clipboard manager
wofi # Wayland rofi
wpa_gui
wpa_supplicant_gui
];
xdg.mimeApps = {
@ -143,6 +144,7 @@ in {
};
extensions = with pkgs.vscode-extensions;
with pkgs.v.vscode-extensions; [
astro-build.astro-vscode
brettm12345.nixfmt-vscode
catppuccin.catppuccin-vsc
codezombiech.gitignore

View file

@ -5,6 +5,9 @@
openFirewall = false;
mode = "laptop";
};
services.mullvad-vpn.enable = true;
networking = {
useDHCP = true;
dhcpcd.wait = "background";

View file

@ -21,9 +21,6 @@ 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 = "astro-vscode";
publisher = "astro-build";
version = "0.5.2022102001";
sha256 = lib.fakeSha256;
};
}