mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
fix: flake check
This commit is contained in:
parent
2c0c99180e
commit
d38a51ae5c
4 changed files with 6 additions and 4 deletions
|
|
@ -10,7 +10,6 @@
|
||||||
];
|
];
|
||||||
systems = [
|
systems = [
|
||||||
"x86_64-linux"
|
"x86_64-linux"
|
||||||
"aarch64-linux"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
services.xserver.videoDrivers = ["nvidia"];
|
services.xserver.videoDrivers = ["nvidia"];
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.glxinfo
|
pkgs.mesa-demos
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.nvidia = {
|
hardware.nvidia = {
|
||||||
|
|
|
||||||
|
|
@ -220,9 +220,9 @@ in {
|
||||||
inherit (monitor) name;
|
inherit (monitor) name;
|
||||||
value = {
|
value = {
|
||||||
inherit (monitor) position;
|
inherit (monitor) position;
|
||||||
mode = {
|
mode = lib.mkIf (monitor.resolution.width != null && monitor.resolution.height != null) {
|
||||||
inherit (monitor.resolution) width height;
|
inherit (monitor.resolution) width height;
|
||||||
refresh = monitor.refreshRateNiri or null;
|
refresh = monitor.refreshRateNiri;
|
||||||
};
|
};
|
||||||
focus-at-startup = monitor.name == primaryMonitorName;
|
focus-at-startup = monitor.name == primaryMonitorName;
|
||||||
transform.rotation =
|
transform.rotation =
|
||||||
|
|
|
||||||
|
|
@ -69,6 +69,9 @@ in {
|
||||||
"github.copilot.nextEditSuggestions.enabled" = true;
|
"github.copilot.nextEditSuggestions.enabled" = true;
|
||||||
"githubPullRequests.codingAgent.uiIntegration" = true;
|
"githubPullRequests.codingAgent.uiIntegration" = true;
|
||||||
"githubPullRequests.pullBranch" = "always";
|
"githubPullRequests.pullBranch" = "always";
|
||||||
|
"chat.tools.terminal.autoApprove" = {
|
||||||
|
"nix" = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Theme
|
# Theme
|
||||||
"workbench.colorTheme" = "Darcula Theme from IntelliJ";
|
"workbench.colorTheme" = "Darcula Theme from IntelliJ";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue