helix text editor test

This commit is contained in:
Ivan Dimitrov 2023-09-08 20:16:45 +03:00
parent 242aaa8810
commit 42a4552e3b
3 changed files with 22 additions and 17 deletions

View File

@ -410,21 +410,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1670751203,
"narHash": "sha256-XdoH1v3shKDGlrwjgrNX/EN8s3c+kQV7xY6cLCE8vcI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "64e0bf055f9d25928c31fb12924e59ff8ce71e60",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"nose": { "nose": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -566,7 +551,9 @@
"inputs": { "inputs": {
"blobs": "blobs", "blobs": "blobs",
"flake-compat": "flake-compat_2", "flake-compat": "flake-compat_2",
"nixpkgs": "nixpkgs_2", "nixpkgs": [
"nixpkgs"
],
"nixpkgs-22_11": "nixpkgs-22_11", "nixpkgs-22_11": "nixpkgs-22_11",
"nixpkgs-23_05": "nixpkgs-23_05", "nixpkgs-23_05": "nixpkgs-23_05",
"utils": "utils" "utils": "utils"

View File

@ -1,5 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }: {
imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ./lf ]; imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ./lf ./helix.nix ];
programs = { programs = {
thunderbird = { thunderbird = {

View File

@ -0,0 +1,18 @@
{ pkgs, lib, ... }: {
home.packages = with pkgs; [
nodePackages_latest.prettier
nodePackages_latest.typescript
nodePackages_latest.eslint
nodePackages_latest.typescript-language-server
nodePackages_latest."@tailwindcss/language-server"
nodePackages_latest."@prisma/language-server"
rnix-lsp
haskell-language-server
ghc
];
programs.helix = {
enable = true;
};
}