added more software and fixed issues with lutris

This commit is contained in:
chloe 2025-09-25 17:15:26 +02:00
parent 29f49657c9
commit bfd19020b3
3 changed files with 9 additions and 2 deletions

View file

@ -88,6 +88,7 @@
"video" "video"
"networkmanager" "networkmanager"
"podman" "podman"
"dialout"
]; ];
packages = with pkgs; [ packages = with pkgs; [
@ -133,7 +134,9 @@
}; };
documentation.dev.enable = true; documentation.dev.enable = true;
systemd.extraConfig = "DefaultLimitNOFILE=524288"; systemd.settings.Manager = {
"DefaultLimitNOFILE" = "524288";
};
security.pam.loginLimits = [ security.pam.loginLimits = [
{ {
domain = "misschloe777"; domain = "misschloe777";
@ -142,6 +145,9 @@
value = "524288"; value = "524288";
} }
]; ];
nixpkgs.config.permittedInsecurePackages = [
"libsoup-2.74.3"
];
# This option defines the first version of NixOS you have installed on this particular machine, # This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions. # and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.

View file

@ -79,6 +79,8 @@
# games # games
tetrio-desktop tetrio-desktop
osu-lazer-bin osu-lazer-bin
ungoogled-chromium
esptool
]; ];
services.mpdscribble = { services.mpdscribble = {

View file

@ -22,7 +22,6 @@
gvfs gvfs
nil nil
bitwarden bitwarden
qutebrowser
]; ];
virtualisation.containers.enable = true; virtualisation.containers.enable = true;