diff options
author | Mily <[email protected]> | 2023-07-23 15:51:00 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2023-07-23 20:51:00 +0200 |
commit | 9fc5f4c48b20875337b7a1eddd274f191edd504d (patch) | |
tree | 5f5800f5256829be4c6cc644343a1f33f20b681a /flake.nix | |
parent | 50e6f368fffece098bea4f0cd87ce3d555ab2cbd (diff) | |
download | Hyprland-9fc5f4c48b20875337b7a1eddd274f191edd504d.tar.gz Hyprland-9fc5f4c48b20875337b7a1eddd274f191edd504d.zip |
init: Request SCHED_RR using CAP_SYS_NICE and add Python to nix dev shell (#2690)
* nix: add python3 to devShell
* init: request SCHED_RR scheduling policy
* init: checks if host supports reseting scheduler on fork
* init: make gainRealTime more compatible with other OSes
* init: remove linux-only code
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ devShells = genSystems (system: { default = pkgsFor.${system}.mkShell { name = "hyprland-shell"; - nativeBuildInputs = with pkgsFor.${system}; [cmake]; + nativeBuildInputs = with pkgsFor.${system}; [ cmake python3 ]; buildInputs = [self.packages.${system}.wlroots-hyprland]; inputsFrom = [ self.packages.${system}.wlroots-hyprland |