diff --git a/nixos/hosts/thalassa/null/home/default.nix b/nixos/hosts/thalassa/null/home/default.nix index f1cbd10..8aa16ed 100644 --- a/nixos/hosts/thalassa/null/home/default.nix +++ b/nixos/hosts/thalassa/null/home/default.nix @@ -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 diff --git a/nixos/hosts/thalassa/null/networking.nix b/nixos/hosts/thalassa/null/networking.nix index 0ca9216..a89c356 100644 --- a/nixos/hosts/thalassa/null/networking.nix +++ b/nixos/hosts/thalassa/null/networking.nix @@ -36,6 +36,9 @@ "wired" = { psk = "@WIRED_PASSWORD@"; }; + "meowy hotspot" = { + psk = "@HOTSPOT_PASSWORD@"; + }; }; }; diff --git a/nixos/pkgs/catppuccin/cursors/default.nix b/nixos/pkgs/catppuccin/cursors/default.nix index f7feb23..6e11c4e 100644 --- a/nixos/pkgs/catppuccin/cursors/default.nix +++ b/nixos/pkgs/catppuccin/cursors/default.nix @@ -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 ''; diff --git a/nixos/pkgs/default.nix b/nixos/pkgs/default.nix index b13c7d8..981a3a7 100644 --- a/nixos/pkgs/default.nix +++ b/nixos/pkgs/default.nix @@ -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; }; }; } diff --git a/nixos/pkgs/vscode-extensions/live-server.nix b/nixos/pkgs/vscode-extensions/live-server.nix new file mode 100644 index 0000000..73fdd1d --- /dev/null +++ b/nixos/pkgs/vscode-extensions/live-server.nix @@ -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; + }; +}