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