mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-10-02 23:14:50 +02:00
added more software and fixed issues with lutris
This commit is contained in:
parent
29f49657c9
commit
bfd19020b3
3 changed files with 9 additions and 2 deletions
|
@ -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.
|
||||||
|
|
|
@ -79,6 +79,8 @@
|
||||||
# games
|
# games
|
||||||
tetrio-desktop
|
tetrio-desktop
|
||||||
osu-lazer-bin
|
osu-lazer-bin
|
||||||
|
ungoogled-chromium
|
||||||
|
esptool
|
||||||
];
|
];
|
||||||
|
|
||||||
services.mpdscribble = {
|
services.mpdscribble = {
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
gvfs
|
gvfs
|
||||||
nil
|
nil
|
||||||
bitwarden
|
bitwarden
|
||||||
qutebrowser
|
|
||||||
];
|
];
|
||||||
|
|
||||||
virtualisation.containers.enable = true;
|
virtualisation.containers.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue