Format project with official nixfmt formatter (#21)

* Set nix official formatter for the flake

* format the entire project
This commit is contained in:
Gaétan Lepage
2025-10-15 22:09:51 +02:00
committed by GitHub
parent 98b3c63572
commit fba993c589
34 changed files with 375 additions and 281 deletions
+4 -4
View File
@@ -33,7 +33,7 @@ lib: {
};
};
};
default = {};
default = { };
description = "Theme overrides including wallpaper path for generated themes";
};
primary_font = lib.mkOption {
@@ -42,11 +42,11 @@ lib: {
};
vscode_settings = lib.mkOption {
type = lib.types.attrs;
default = {};
default = { };
};
monitors = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [];
default = [ ];
};
scale = lib.mkOption {
type = lib.types.int;
@@ -80,7 +80,7 @@ lib: {
};
exclude_packages = lib.mkOption {
type = lib.types.listOf lib.types.package;
default = [];
default = [ ];
description = "Packages to exclude from the default system packages";
};
};