1
Fork 0

Gdm setup, attempted to set up grub theming

This commit is contained in:
Matei Adriel 2023-02-09 23:55:36 +01:00
parent e555c40b2c
commit 01c5fe433b
No known key found for this signature in database
15 changed files with 205 additions and 21 deletions
dotfiles/vscode-snippets/snippets/nix

View file

@ -0,0 +1,14 @@
{
"Fetch from GitHub": {
"prefix": "fetchFromGitHub",
"description": "Fetch a repo from github",
"body": [
"pkgs.fetchFromGitHub {",
"\towner = \"$1\";",
"\trepo = \"$2\";",
"\trev = \"\";",
"\tsha256 = \"\";",
"}$0"
]
}
}