Compare commits
No commits in common. "e44a1d3b08b4042f98a33ebd818ad2d92aadea57" and "852e9fbf9b551574683410847ef77da3bc036649" have entirely different histories.
e44a1d3b08
...
852e9fbf9b
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
vadimcn.vscode-lldb
|
vadimcn.vscode-lldb
|
||||||
ms-dotnettools.csharp
|
ms-dotnettools.csharp
|
||||||
ms-vscode-remote.remote-ssh
|
ms-vscode-remote.remote-ssh
|
||||||
RoweWilsonFrederiskHolme.wikitext
|
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"files.autoSave" = "afterDelay";
|
"files.autoSave" = "afterDelay";
|
||||||
|
@ -43,7 +42,6 @@
|
||||||
"redhat.telemetry.enabled" = false;
|
"redhat.telemetry.enabled" = false;
|
||||||
|
|
||||||
"git.autofetch" = true;
|
"git.autofetch" = true;
|
||||||
"git.path" = "${lib.getBin pkgs.git}/bin/git";
|
|
||||||
"diffEditor.diffAlgorithm" = "advanced";
|
"diffEditor.diffAlgorithm" = "advanced";
|
||||||
"explorer.excludeGitIgnore" = true;
|
"explorer.excludeGitIgnore" = true;
|
||||||
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
||||||
|
|
|
@ -52,7 +52,6 @@ nixpkgs.lib.nixosSystem {
|
||||||
|
|
||||||
users.users.ronja.openssh.authorizedKeys.keys = [
|
users.users.ronja.openssh.authorizedKeys.keys = [
|
||||||
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIALWKm+d6KL6Vl3grPOcGouiNTkvdhXuWJmcrdEBY2nw ssh-host-key''
|
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIALWKm+d6KL6Vl3grPOcGouiNTkvdhXuWJmcrdEBY2nw ssh-host-key''
|
||||||
''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgN6J8KyVyQqBAz+y3drXDmIsxOPkdPB+ISgpIP9Eld Generated By Termius''
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
opencl.enable = true;
|
opencl.enable = true;
|
||||||
amdvlk = {
|
amdvlk = {
|
||||||
# TODO: this creates black borders around GNOME apps
|
# TODO: this creates black borders around GNOME apps
|
||||||
enable = true;
|
# enable = true;
|
||||||
support32Bit.enable = config.hardware.graphics.enable32Bit;
|
support32Bit.enable = config.hardware.graphics.enable32Bit;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
remotePlay.openFirewall = true;
|
remotePlay.openFirewall = true;
|
||||||
dedicatedServer.openFirewall = true;
|
dedicatedServer.openFirewall = true;
|
||||||
localNetworkGameTransfers.openFirewall = true;
|
localNetworkGameTransfers.openFirewall = true;
|
||||||
gamescopeSession.enable = false;
|
gamescopeSession.enable = true;
|
||||||
};
|
};
|
||||||
gamemode.enable = true;
|
gamemode.enable = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue