Added some packages
This commit is contained in:
@@ -11,7 +11,6 @@
|
|||||||
btop
|
btop
|
||||||
fastfetch
|
fastfetch
|
||||||
mc
|
mc
|
||||||
git
|
|
||||||
parted
|
parted
|
||||||
tree
|
tree
|
||||||
tmux
|
tmux
|
||||||
|
|||||||
@@ -4,5 +4,6 @@
|
|||||||
./git
|
./git
|
||||||
./profile
|
./profile
|
||||||
./xmonad
|
./xmonad
|
||||||
|
./zed-editor
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
6
user/homed/zed-editor/default.nix
Normal file
6
user/homed/zed-editor/default.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ pkgs.zed-editor ];
|
||||||
|
|
||||||
|
homix.".config/zed/settings.json".source = ./settings.json;
|
||||||
|
}
|
||||||
47
user/homed/zed-editor/settings.json
Normal file
47
user/homed/zed-editor/settings.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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
|
||||||
|
|||||||
4
user/packages/krita/default.nix
Normal file
4
user/packages/krita/default.nix
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ pkgs.krita ];
|
||||||
|
}
|
||||||
6
user/packages/python3/default.nix
Normal file
6
user/packages/python3/default.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
python311
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user