Added some packages

This commit is contained in:
2025-03-08 19:00:55 +09:00
parent 6ce0c1da57
commit 9e2b554152
7 changed files with 66 additions and 1 deletions

View File

@@ -11,7 +11,6 @@
btop btop
fastfetch fastfetch
mc mc
git
parted parted
tree tree
tmux tmux

View File

@@ -4,5 +4,6 @@
./git ./git
./profile ./profile
./xmonad ./xmonad
./zed-editor
]; ];
} }

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.zed-editor ];
homix.".config/zed/settings.json".source = ./settings.json;
}

View File

@@ -0,0 +1,47 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"assistant": {
"default_model": {
"provider": "ollama",
"model": "mistral:7b"
},
"version": "2"
},
"base_keymap": "VSCode",
"theme": "Gruvbox Material",
"telemetry": {
"metrics": false
},
"vim_mode": true,
"buffer_font_family": "0xProto",
"buffer_font_size": 16,
"ui_font_size": 16,
"tab_size": 4,
"tabs": {
"close_position": "right",
"file_icons": true,
"git_status": true
},
"format_on_save": "off",
"language_models": {
"ollama": {
"api_url": "http://127.0.0.1:11434"
}
},
"terminal": {
"shell": {
"with_arguments": {
"program": "/run/current-system/sw/bin/bash",
"args": ["--rcfile", "/etc/bashrc"]
}
},
"blinking": "on"
}
}

View File

@@ -13,12 +13,14 @@
./kdenlive ./kdenlive
./keepassxc ./keepassxc
./kicad ./kicad
./krita
./libreoffice-fresh ./libreoffice-fresh
./mangohud ./mangohud
./mpv ./mpv
./obs-studio ./obs-studio
./owncloud-client ./owncloud-client
./pandoc ./pandoc
./python3
./qtcreator ./qtcreator
./thunderbird ./thunderbird
./tldr ./tldr

View File

@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.krita ];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
python311
];
}