some todos

This commit is contained in:
Peder Bergebakken Sundt 2023-10-11 23:49:51 +02:00
parent 22123ebda0
commit 44461fc75a
4 changed files with 27 additions and 0 deletions

View File

@ -11,6 +11,7 @@
# TODOs: # TODOs:
* [ ] https://discourse.nixos.org/t/jsonresume-nix-build-and-deploy-your-resume-with-nix/34089
* [ ] https://github.com/ogoid/nixos-expose-cuda * [ ] https://github.com/ogoid/nixos-expose-cuda
* [ ] http health monitoring `services.netdata.httpcheck.checks.<foobar>` * [ ] http health monitoring `services.netdata.httpcheck.checks.<foobar>`
* [x] Split stuff into multiple files * [x] Split stuff into multiple files

View File

@ -21,3 +21,6 @@
#hostKey = null; #hostKey = null;
}; };
``` ```
* [ ] a DAW profile
* https://libreddit.noximilien.pbsds.net/r/linuxaudio/comments/wntpyd/linux_plugins_thread_2022/

View File

@ -9,6 +9,7 @@
./profiles/git.nix ./profiles/git.nix
./profiles/gtk.nix ./profiles/gtk.nix
./profiles/micro.nix ./profiles/micro.nix
./profiles/ast-rep.nix
./profiles/shell.nix ./profiles/shell.nix
./profiles/gh-dash.nix ./profiles/gh-dash.nix
./profiles/ssh.nix ./profiles/ssh.nix

View File

@ -0,0 +1,22 @@
{ pkgs, ... }:
{
# https://github.com/ast-grep/ast-grep/issues/658
# https://github.com/ast-grep/ast-grep/issues/30
# https://github.com/ast-grep/ast-grep.github.io/issues/98
/** /
home.packages = with pkgs; [
ast-grep
];
xdg.configFile."ast-grep/sgrammar.yaml".source = (pkgs.formats.yaml { }).generate {
ruleDirs = "rules";
#customLanguages = (lib.mapAttrs (k: v: TODO) pkgs.tree-sitter-grammars)
customLanguages.nix = {
libraryPath = "${pkgs.tree-sitter-grammars.tree-sitter-nix}/parser";
extensions = [ "nix" ];
};
};
/**/
}