fix: nix Maple Fonts

This commit is contained in:
js0ny 2025-10-26 16:14:39 +00:00
parent 9605a62e9c
commit e2209cea57
12 changed files with 96 additions and 46 deletions

View file

@ -1,8 +1,15 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
go
gopls
];
home.sessionVariables = {
GOPATH = "${config.xdg.dataHome}/go";
};
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
golang.go
];

View file

@ -1,8 +1,15 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
uv
ruff
];
home.sessionVariables = {
PYTHON_HISTORY = "${config.xdg.dataHome}/python/history";
};
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
ms-python.python
ms-python.debugpy