fix: flake check

This commit is contained in:
Nickolaj Jepsen 2025-12-13 19:53:17 +01:00
parent 2c0c99180e
commit d38a51ae5c
4 changed files with 6 additions and 4 deletions

View file

@ -10,7 +10,6 @@
];
systems = [
"x86_64-linux"
"aarch64-linux"
];
};

View file

@ -15,7 +15,7 @@
services.xserver.videoDrivers = ["nvidia"];
environment.systemPackages = [
pkgs.glxinfo
pkgs.mesa-demos
];
hardware.nvidia = {

View file

@ -220,9 +220,9 @@ in {
inherit (monitor) name;
value = {
inherit (monitor) position;
mode = {
mode = lib.mkIf (monitor.resolution.width != null && monitor.resolution.height != null) {
inherit (monitor.resolution) width height;
refresh = monitor.refreshRateNiri or null;
refresh = monitor.refreshRateNiri;
};
focus-at-startup = monitor.name == primaryMonitorName;
transform.rotation =

View file

@ -69,6 +69,9 @@ in {
"github.copilot.nextEditSuggestions.enabled" = true;
"githubPullRequests.codingAgent.uiIntegration" = true;
"githubPullRequests.pullBranch" = "always";
"chat.tools.terminal.autoApprove" = {
"nix" = true;
};
# Theme
"workbench.colorTheme" = "Darcula Theme from IntelliJ";