mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
Add tungsten (#9)
Reviewed-on: https://codeberg.org/leana8959/.files/pulls/9 Co-authored-by: Léana 江 <leana.jiang+git@icloud.com> Co-committed-by: Léana 江 <leana.jiang+git@icloud.com>
This commit is contained in:
parent
1848be039a
commit
b20a752858
41 changed files with 1749 additions and 43 deletions
58
nix/configurations/tungsten/home/dev.nix
Normal file
58
nix/configurations/tungsten/home/dev.nix
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
# home.packages = [
|
||||
# # preview markdown
|
||||
# pkgs.python3Packages.grip
|
||||
#
|
||||
# pkgs.gh
|
||||
# ];
|
||||
|
||||
programs.neovim.extraPackages = [
|
||||
# lua
|
||||
pkgs.lua-language-server
|
||||
pkgs.stylua
|
||||
|
||||
pkgs.nil # nix
|
||||
# pkgs.yaml-language-server # yaml
|
||||
#
|
||||
# pkgs.pyright # python
|
||||
#
|
||||
# pkgs.marksman # markdown
|
||||
# pkgs.taplo # toml
|
||||
# pkgs.lemminx # xml
|
||||
# # pkgs.texlab # latex
|
||||
#
|
||||
# # fish
|
||||
# pkgs.fish-lsp
|
||||
#
|
||||
# # spellchecking
|
||||
# pkgs.myPkgs.ltex-ls-plus
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
signing.signByDefault = true;
|
||||
maintenance = {
|
||||
enable = true;
|
||||
repositories =
|
||||
lib.map (path: config.home.homeDirectory + "/${path}")
|
||||
[
|
||||
"r/nixos/nixpkgs"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs.gpg.enable = true;
|
||||
|
||||
# programs.vscode = {
|
||||
# enable = true;
|
||||
# extensions = [
|
||||
# pkgs.vscode-extensions.redhat.java
|
||||
# pkgs.vscode-extensions.vscjava.vscode-java-pack
|
||||
# ];
|
||||
# };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue