small error fixes

This commit is contained in:
alisceon 2026-03-19 19:30:36 +01:00
parent d43628b069
commit f4539a9c7d
3 changed files with 7 additions and 6 deletions

View file

@ -30,14 +30,14 @@
{ {
name = "pyrefly"; name = "pyrefly";
publisher = "meta"; publisher = "meta";
version = "0.55.0"; version = "0.57.1";
hash = "sha256-leduAq1xehbQwrzi9dTawZCqYYvyacTQP26QWTTdk6U="; hash = "sha256-aF7QcjpID0PE9gMBM6RGfJ3CHOpmyDuHJbbrRRvLiBI=";
} }
{ {
name = "chatgpt"; name = "chatgpt";
publisher = "openai"; publisher = "openai";
version = "26.5309.21912"; version = "26.5313.41514";
hash = "sha256-NScVy6f3XdczoJ8SuNSUBFn2QzObkzYk6U4BVeGEFe4="; hash = "sha256-kZHfcMzxqCtvkU04kDrlwaO3uHvn4+V6B5sLzlDfceo=";
} }
]; ];
}; };

View file

@ -1,4 +1,4 @@
{ pkgs, repoRoot, ... }: { pkgs, ... }:
let let
commands = import ../../../lib/commands.nix { inherit pkgs; }; commands = import ../../../lib/commands.nix { inherit pkgs; };
inherit (commands) uwsm term; inherit (commands) uwsm term;

View file

@ -3,9 +3,10 @@
home.username = "root"; home.username = "root";
home.homeDirectory = "/root"; home.homeDirectory = "/root";
home.stateVersion = "24.05"; home.stateVersion = "24.05";
stylix.enableReleaseChecks = false;
programs.git = { programs.git = {
enable = true; enable = true;
extraConfig.safe.directory = repoLocalPath; settings.safe.directory = repoLocalPath;
}; };
} }