Release Ver 1.2.0

This commit is contained in:
Peritia 2025-08-13 11:40:03 +02:00
parent 7f73899c91
commit 89600ebb06
25 changed files with 1862 additions and 57 deletions

View file

@ -24,7 +24,7 @@ let
"${pkgs.git}/bin/git"
"${pkgs.nix-output-monitor}/bin/nom"
(if nyxCfg.autoPush then "true" else "false")
"1.1.0"
"1.2.0"
]
src;
in
@ -40,14 +40,14 @@ in
};
config = lib.mkIf (nyxCfg.enable && cfg.enable) {
home.packages =
environment.systemPackages =
lib.optionals (cfg.enableFormatting && cfg.formatter == "alejandra") [ pkgs.alejandra ]
++ [
# Ensure nyx-tool exists if you call it in the script
(pkgs.writeShellScriptBin "nyx-rebuild" rebuiltScript)
];
home.shellAliases = lib.mkIf cfg.enableAlias {
environment.shellAliases = lib.mkIf cfg.enableAlias {
nr = "nyx-rebuild";
};
};