diff --git a/host/Rory-laptop/configuration.nix b/host/Rory-laptop/configuration.nix
index bd1c5a1..320a5d9 100644
--- a/host/Rory-laptop/configuration.nix
+++ b/host/Rory-laptop/configuration.nix
@@ -16,22 +16,24 @@ args@{
# ../../modules/environments/home.nix
../../modules/environments/nethost-Rory-desktop.nix
#../../modules/software-templates/profilers.nix
- ../../modules/software-templates/dotnet.client.nix
+# ../../modules/software-templates/dotnet.client.nix
+ #../../modules/software-templates/devenv/dotnet.nix
- ./postgres.nix
- ./nginx.nix
+ #./postgres.nix
+ #./nginx.nix
#./edu/vmware.nix
#./edu/nodejs-dev.nix
# hardware-specific imports
#./optional/hardware-specific/nvidia.nix
- ./optional/hardware-specific/intel.nix
+ #./optional/hardware-specific/intel.nix
./optional/gui/wayland.nix
];
boot = {
kernelPackages = pkgs.linuxPackages_latest;
+ blacklistedKernelModules = [ "nova" "nova_core" "nouveau" ];
loader = {
grub = {
configurationLimit = 10;
@@ -56,7 +58,7 @@ args@{
networking = {
hostName = "Rory-laptop";
networkmanager.enable = true;
- wireless.enable = false;
+ wireless.enable = true;
firewall = {
enable = false;
# allowedTCPPorts = [ ... ];
@@ -124,22 +126,6 @@ args@{
pear-desktop
# - IDEs
-
- (jetbrains.plugins.addPlugins jetbrains.webstorm [
- jetbrains.plugins.github-copilot-fixed
- #"github-copilot"
- ])
- (jetbrains.plugins.addPlugins jetbrains.idea-ultimate [
- jetbrains.plugins.github-copilot-fixed
- #"github-copilot"
- ])
- (jetbrains.plugins.addPlugins jetbrains.clion [
- jetbrains.plugins.github-copilot-fixed
- #"github-copilot"
- "stringmanipulation"
- "nixidea"
- "visual-studio-keymap"
- ])
binutils
dbeaver-bin
@@ -151,10 +137,10 @@ args@{
# - Languages
#dotnet-sdk_8
- dotnetCorePackages.sdk_9_0
+ #dotnetCorePackages.sdk_9_0
#games
- osu-lazer-bin
+ # osu-lazer-bin
# extra packages
dmenu
@@ -192,10 +178,10 @@ args@{
jitsi-meet-electron
# nixd # broken 24/03/2025
- mullvad-vpn
+ # mullvad-vpn
blueman
ft2-clone
- wxmaxima
+ # wxmaxima
];
environment.etc."pkcs11/modules/opensc-pkcs11".text = ''
module: ${pkgs.opensc}/lib/opensc-pkcs11.so
@@ -259,7 +245,7 @@ args@{
#
#services.orca.enable = true;
- virtualisation.waydroid.enable = true;
+ #virtualisation.waydroid.enable = true;
xdg = {
portal = {
@@ -336,10 +322,10 @@ args@{
# };
virtualisation.libvirtd = {
- enable = true;
+ enable = false;
qemu = {
swtpm.enable = true;
- ovmf.enable = true;
+ #ovmf.enable = true;
};
};
programs.virt-manager.enable = true;
diff --git a/host/Rory-laptop/nginx.nix b/host/Rory-laptop/nginx.nix
index c247044..3a0e622 100644
--- a/host/Rory-laptop/nginx.nix
+++ b/host/Rory-laptop/nginx.nix
@@ -11,7 +11,7 @@
enable = true;
recommendedProxySettings = true;
#recommendedTlsSettings = true;
- recommendedZstdSettings = true;
+ #recommendedZstdSettings = true;
# recommendedGzipSettings = true;
recommendedBrotliSettings = true;
recommendedOptimisation = true;
diff --git a/host/Rory-laptop/optional/gui/wayland.nix b/host/Rory-laptop/optional/gui/wayland.nix
index c980a85..b9cd15c 100644
--- a/host/Rory-laptop/optional/gui/wayland.nix
+++ b/host/Rory-laptop/optional/gui/wayland.nix
@@ -47,7 +47,7 @@
programs.hyprlock.enable = true;
environment.systemPackages = with pkgs; [
wmenu
- kdePackages.xwaylandvideobridge
+# kdePackages.xwaylandvideobridge
];
environment.etc."hyprPlugins" = {
|