Compare commits
No commits in common. "8822d305456f9b8f9f1bd68b5b83fbd471dcfa2c" and "3a1eb9d32045422914d02096117dc459f149278b" have entirely different histories.
8822d30545
...
3a1eb9d320
2 changed files with 3 additions and 49 deletions
46
.vscode/nixmodule.code-snippets
vendored
46
.vscode/nixmodule.code-snippets
vendored
|
@ -1,46 +0,0 @@
|
|||
{
|
||||
// If scope is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
|
||||
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
|
||||
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
|
||||
// Placeholders with the same ids are connected.
|
||||
"Nix Module with Enable Option": {
|
||||
"scope": "nix",
|
||||
"prefix": "nixmodule",
|
||||
"body": [
|
||||
"{ config, lib, pkgs, ... }:",
|
||||
"let",
|
||||
" cfg = config.mySystem.${1:moduleName};",
|
||||
"in",
|
||||
"{",
|
||||
" options.${1:moduleName} = {",
|
||||
" enable = lib.mkEnableOption \"${2:Description of the module}\";",
|
||||
" };",
|
||||
"",
|
||||
" config = lib.mkIf cfg.enable {",
|
||||
" $0",
|
||||
" };",
|
||||
"}"
|
||||
],
|
||||
"description": "Creates a blank Nix module with an enable option"
|
||||
},
|
||||
"Nix Home Manager Module with Enable Option": {
|
||||
"scope": "nix",
|
||||
"prefix": "nixmodule-homemanager",
|
||||
"body": [
|
||||
"{ config, lib, pkgs, ... }:",
|
||||
"let",
|
||||
" cfg = config.myHome.programs.${1:moduleName};",
|
||||
"in",
|
||||
"{",
|
||||
" options.${1:moduleName} = {",
|
||||
" enable = lib.mkEnableOption \"${2:Description of the module}\";",
|
||||
" };",
|
||||
"",
|
||||
" config = lib.mkIf cfg.enable {",
|
||||
" $0",
|
||||
" };",
|
||||
"}"
|
||||
],
|
||||
"description": "Creates a blank Nix module with an enable option"
|
||||
}
|
||||
}
|
|
@ -26,15 +26,15 @@ with config;
|
|||
[
|
||||
#apps
|
||||
discord
|
||||
flameshot
|
||||
inputs.ghostty.packages.${pkgs.system}.default
|
||||
jetbrains.datagrip
|
||||
obsidian
|
||||
parsec-bin
|
||||
solaar # open source manager for logitech unifying receivers
|
||||
solaar
|
||||
unstable.bruno
|
||||
unstable.flameshot
|
||||
unstable.fractal
|
||||
unstable.httpie
|
||||
unstable.jetbrains.datagrip
|
||||
unstable.mods
|
||||
unstable.peazip
|
||||
unstable.seabird
|
||||
|
|
Loading…
Reference in a new issue