diff options
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/gaming.nix | 4 | ||||
-rw-r--r-- | nixos/modules/packages.nix | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/nixos/modules/gaming.nix b/nixos/modules/gaming.nix index 3a9d8e7..6dce70d 100644 --- a/nixos/modules/gaming.nix +++ b/nixos/modules/gaming.nix @@ -35,7 +35,7 @@ in { with pkgs; [ ncurses xorg.libXpm - flac134 + #flac134 libopus ]; }; @@ -44,7 +44,7 @@ in { with pkgs; [ ncurses xorg.libXpm - flac134 + #flac134 libopus SDL SDL2_image diff --git a/nixos/modules/packages.nix b/nixos/modules/packages.nix index 55db94d..155d8a5 100644 --- a/nixos/modules/packages.nix +++ b/nixos/modules/packages.nix @@ -68,6 +68,9 @@ in { lm_sensors ] + ++ optionals (system != "armv7l-linux") [ + ranger + ] ++ optionals (system == "x86_64-linux") [ nmap ltrace |