Gdm setup, attempted to set up grub theming
This commit is contained in:
parent
e555c40b2c
commit
01c5fe433b
15 changed files with 205 additions and 21 deletions
dotfiles/vscode-snippets
|
@ -43,6 +43,12 @@
|
|||
"lua"
|
||||
],
|
||||
"path": "./snippets/lua/core.json"
|
||||
},
|
||||
{
|
||||
"language": [
|
||||
"nix"
|
||||
],
|
||||
"path": "./snippets/nix/core.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
14
dotfiles/vscode-snippets/snippets/nix/core.json
Normal file
14
dotfiles/vscode-snippets/snippets/nix/core.json
Normal 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"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue