diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-01-09 21:57:06 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-01-10 13:47:48 +0530 |
| commit | 45d103f623752f9965e9de7a4fa60b3be3db026b (patch) | |
| tree | a8ffa18fce8f4ca48f2f74a7a412530900a589b6 /configuration.nix | |
| parent | 27138ae14a46729714499e2e605e0313c8c2c8be (diff) | |
| download | nixos-config-45d103f623752f9965e9de7a4fa60b3be3db026b.tar.gz nixos-config-45d103f623752f9965e9de7a4fa60b3be3db026b.zip | |
Move bslock package into module and use xautolock instead of script
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/configuration.nix b/configuration.nix index b5e1eef..5598154 100644 --- a/configuration.nix +++ b/configuration.nix @@ -17,6 +17,7 @@ ./modules/jackett.nix ./modules/thunderbird/default.nix ./modules/clamav.nix + ./modules/lockscreen.nix ]; nixpkgs.config = { @@ -28,17 +29,14 @@ programs.dconf.enable = true; - # Fix hmr issue? + programs.nix-ld.enable = true; + + # Fix hmr issue systemd.extraConfig = ''DefaultLimitNOFILE=65536''; systemd.user.extraConfig = ''DefaultLimitNOFILE=65536''; boot.kernel.sysctl."fs.inotify.max_user_instances" = 8192; security.pam.loginLimits = [ - { - domain = "*"; - type = "-"; - item = "nofile"; - value = "65536"; - } + { domain = "*"; type = "-"; item = "nofile"; value = "65536"; } ]; # NOTE: Enable bluetooth using this and then use bluetoothctl |
