This commit is contained in:
2026-03-07 08:56:18 -05:00
parent c4ac0db59b
commit e2235667d7

View File

@@ -290,6 +290,9 @@
patchelf # make programs understand nix. good for downloaded executables such as crackmes
starsector # support indie games!
htop
mullvad-vpn # arrr
qbittorrent # arrr
mpv # arrr
];
};
@@ -326,13 +329,12 @@
powerOnBoot = true;
};
networking.networkmanager = {
enable = true;
# This is the critical line that fixes your error
plugins = with pkgs; [
networkmanager-openvpn
];
};
# networking.networkmanager = {
# enable = true;
# plugins = with pkgs; [
# networkmanager-openvpn # for htb
# ];
# };
services.ollama = {
enable = false;
@@ -356,9 +358,14 @@
services.displayManager.sddm.enable = true; # Enable display manager
services.displayManager.sddm.wayland.enable = true; # Wayland - hyprland
services.mullvad-vpn.package = pkgs.mullvad-vpn; # arr
services.resolved.enable = true; # for mullvad
programs.ssh.startAgent = true; # Enable SSH tools
programs.thunar.enable = true; # file manager
virtualisation.waydroid.enable = true; # android :0
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
@@ -418,4 +425,3 @@
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "25.11"; # Did you read the comment?
}