fix(home/optional dirs defaults): add ; - was missing

This commit is contained in:
madmin 2024-07-18 14:50:18 +02:00
parent 0ce1c94748
commit 24b0be6e0d
8 changed files with 15 additions and 15 deletions

View File

@ -7,8 +7,6 @@
# Here go packages without my configs
#!Remember to comment without space after package
signal-desktop# there are also clis and other sw for interaction with signal on desktop
element-desktop# should be usable on wayland
}
element-desktop;# should be usable on wayland
};
}

View File

@ -6,5 +6,5 @@
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
}
};
}

View File

@ -6,5 +6,5 @@
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
}
};
}

View File

@ -6,5 +6,5 @@
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
}
};
}

View File

@ -6,5 +6,6 @@
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
}
vlc;
};
}

View File

@ -6,6 +6,6 @@
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
libreoffice# TODO: will it work on wayland?
}
libreoffice; # TODO: will it work on wayland?
};
}

View File

@ -6,5 +6,5 @@
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
}
};
}

View File

@ -1,11 +1,12 @@
{ config, lib, pkgs, outputs, configLib, ... }:
{ pkgs, outputs, configLib, ... }:
{
imports = (configLib.scanPaths ./.)
++ (builtins.attrValues outputs.homeManagerModules);
home.packages = builtins.attrValues {
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
fwupd# firmware updater default on KDE
}
# !Remember to comment without space after package
fwupd; # firmware updater default on KDE
};
}