mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-11 11:05:23 -05:00
Fixed VSCode(ish) And Adding SetupKeyFile from Sops For Netbird
This commit is contained in:
parent
ee6f94d375
commit
eb0ea0f0c1
3 changed files with 8 additions and 3 deletions
|
|
@ -26,9 +26,6 @@
|
|||
catppuccin-vsc = {
|
||||
url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
|
||||
};
|
||||
# nix-vscode-extensions = {
|
||||
# url = "github:nix-community/nix-vscode-extensions";
|
||||
# };
|
||||
|
||||
# solaar = {
|
||||
# url = "github:Svenum/Solaar-Flake/latest";
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
opts = {
|
||||
management_url = "https://netbird.moosenet.work:443";
|
||||
admin_url = "https://netbird.moosenet.work";
|
||||
setup_key_file = config.sops.secrets."netbird/setup_keys/end_user".path;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,8 +11,14 @@
|
|||
config = lib.mkIf (config.gui.enable && config.vscode.enable) {
|
||||
home-manager.users.${config.user} = {
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
|
||||
enableUpdateCheck = false;
|
||||
enableExtensionUpdateCheck = false;
|
||||
mutableExtensionsDir = false;
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
catppuccin.catppuccin-vsc
|
||||
ms-azuretools.vscode-docker
|
||||
|
|
@ -22,6 +28,7 @@
|
|||
firefox-devtools.vscode-firefox-debug
|
||||
davidanson.vscode-markdownlint
|
||||
bbenoist.nix
|
||||
brettm12345.nixfmt-vscode
|
||||
golang.go
|
||||
mkhl.direnv
|
||||
ms-vscode-remote.remote-ssh
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue