Format with nixfmt-rfc

This commit is contained in:
DashieTM 2024-08-25 19:10:41 +02:00
parent 8c9f699269
commit a90a9c3a8e
60 changed files with 1756 additions and 1039 deletions

View file

@ -1,4 +1,11 @@
{ lib, config, pkgs, options, ... }: {
{
lib,
config,
pkgs,
options,
...
}:
{
options.mods = {
coding = {
enable = lib.mkOption {
@ -28,8 +35,8 @@
};
};
config = lib.mkIf config.mods.coding.enable
(lib.optionalAttrs (options ? home.packages) {
config = lib.mkIf config.mods.coding.enable (
lib.optionalAttrs (options ? home.packages) {
programs.dashvim = lib.mkIf config.mods.coding.dashvim {
enable = true;
colorscheme = config.mods.stylix.colorscheme;
@ -141,5 +148,6 @@
tmate
];
});
}
);
}