feat: run the config through deadnix

This commit is contained in:
NotAShelf 2023-03-31 05:20:35 +03:00
commit d8b52451dd
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
98 changed files with 45 additions and 253 deletions

View file

@ -1,13 +1,10 @@
{
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.dashboard.alpha;
in {
with builtins; {
options.vim.dashboard.alpha = {
enable = mkEnableOption "alpha";
};

View file

@ -1,5 +1,4 @@
{
pkgs,
config,
lib,
...

View file

@ -1,5 +1,4 @@
{
pkgs,
config,
lib,
...

View file

@ -1,13 +1,10 @@
{
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.dashboard.dashboard-nvim;
in {
with builtins; {
options.vim.dashboard.dashboard-nvim = {
enable = mkEnableOption "dashboard-nvim";
};

View file

@ -1,7 +1,4 @@
{
pkgs,
config,
lib,
...
}: {
imports = [

View file

@ -1,18 +1,10 @@
{
pkgs,
config,
lib,
...
}:
with builtins;
with lib; let
cfg = config.vim.dashboard.startify;
mkVimBool = val:
if val
then "1"
else "0";
in {
with lib; {
options.vim.dashboard.startify = {
enable = mkEnableOption "Enable startify";