mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-12 05:13:37 -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 = {
|
catppuccin-vsc = {
|
||||||
url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
|
url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
|
||||||
};
|
};
|
||||||
# nix-vscode-extensions = {
|
|
||||||
# url = "github:nix-community/nix-vscode-extensions";
|
|
||||||
# };
|
|
||||||
|
|
||||||
# solaar = {
|
# solaar = {
|
||||||
# url = "github:Svenum/Solaar-Flake/latest";
|
# url = "github:Svenum/Solaar-Flake/latest";
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
opts = {
|
opts = {
|
||||||
management_url = "https://netbird.moosenet.work:443";
|
management_url = "https://netbird.moosenet.work:443";
|
||||||
admin_url = "https://netbird.moosenet.work";
|
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) {
|
config = lib.mkIf (config.gui.enable && config.vscode.enable) {
|
||||||
home-manager.users.${config.user} = {
|
home-manager.users.${config.user} = {
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
enableUpdateCheck = false;
|
||||||
|
enableExtensionUpdateCheck = false;
|
||||||
|
mutableExtensionsDir = false;
|
||||||
|
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
catppuccin.catppuccin-vsc
|
catppuccin.catppuccin-vsc
|
||||||
ms-azuretools.vscode-docker
|
ms-azuretools.vscode-docker
|
||||||
|
|
@ -22,6 +28,7 @@
|
||||||
firefox-devtools.vscode-firefox-debug
|
firefox-devtools.vscode-firefox-debug
|
||||||
davidanson.vscode-markdownlint
|
davidanson.vscode-markdownlint
|
||||||
bbenoist.nix
|
bbenoist.nix
|
||||||
|
brettm12345.nixfmt-vscode
|
||||||
golang.go
|
golang.go
|
||||||
mkhl.direnv
|
mkhl.direnv
|
||||||
ms-vscode-remote.remote-ssh
|
ms-vscode-remote.remote-ssh
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue