b447282c7a
* feat: add test node and spin up podman/cockpit * dev hack * bug: disable wayland temporarily #52 * feat: add nfs mount to nas * chore: add nas to sshconf * derp * hax * fix: hax * feat: firefox and gnome tweaks * chore: tweak nautilus --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
27 lines
464 B
Text
27 lines
464 B
Text
{
|
|
"nix-module": {
|
|
"prefix": "nm",
|
|
"body": [
|
|
"{ lib",
|
|
", config",
|
|
", pkgs",
|
|
", ...",
|
|
"}:",
|
|
"with lib;",
|
|
"let",
|
|
" cfg = config.mySystem.${1}.${2};",
|
|
"in",
|
|
"{",
|
|
" options.mySystem.${1}.${2}.enable = mkEnableOption \"${3}\";",
|
|
"",
|
|
" config = mkIf cfg.enable {",
|
|
"",
|
|
" $4{}",
|
|
"",
|
|
" };",
|
|
"}",
|
|
""
|
|
],
|
|
"description": "nix-module"
|
|
}
|
|
}
|