some todos
This commit is contained in:
parent
22123ebda0
commit
44461fc75a
@ -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
|
||||||
|
@ -21,3 +21,6 @@
|
|||||||
#hostKey = null;
|
#hostKey = null;
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
* [ ] a DAW profile
|
||||||
|
* https://libreddit.noximilien.pbsds.net/r/linuxaudio/comments/wntpyd/linux_plugins_thread_2022/
|
||||||
|
@ -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
|
||||||
|
22
users/pbsds/home/profiles/ast-grep.nix
Normal file
22
users/pbsds/home/profiles/ast-grep.nix
Normal 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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/**/
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user