Compare commits

...

2 commits

Author SHA1 Message Date
Nickiel12
0cd84911c9 switch typscript lsps 2024-08-09 01:19:57 +00:00
Nickiel12
e167da333e added windows default graphics; update name 2024-08-09 00:03:50 +00:00
3 changed files with 4 additions and 2 deletions

View file

@ -15,6 +15,8 @@
xkcd-font xkcd-font
]; ];
wsl.useWindowsDriver = true;
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nix = { nix = {
gc = { gc = {

View file

@ -41,7 +41,7 @@
Option "metamodes" "DP-4: 2560x1440 +1920+0, DP-2: 1920x1080 +0+360" Option "metamodes" "DP-4: 2560x1440 +1920+0, DP-2: 1920x1080 +0+360"
''; '';
}; };
hardware.opengl.enable = true; hardware.graphics.enable = true;
# Optionally, you may need to select the appropriate driver version for your specific GPU. # Optionally, you may need to select the appropriate driver version for your specific GPU.
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable; hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;

View file

@ -161,6 +161,7 @@ in
]; ];
plugins = { plugins = {
typescript-tools.enable = true;
lsp = { lsp = {
enable = true; enable = true;
@ -177,7 +178,6 @@ in
autostart = true; autostart = true;
}; };
html.enable = true; html.enable = true;
tsserver.enable = true;
cssls.enable = true; cssls.enable = true;
}; };
}; };