manage git with chezmoi

This commit is contained in:
js0ny 2025-10-20 03:44:56 +01:00
parent e3a0205724
commit 52b70819bf
19 changed files with 204 additions and 104 deletions

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
gcc
llvmPackages_21.clang-tools
llvmPackages_21.clang-tools # clangd
];
}

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
home.packages = with pkgs; [
go
gopls
];
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
golang.go
];
}

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
freerdp
winboat
];
}