config: change removed aliases to their non-aliased versions

This commit is contained in:
Gabriel Arazas 2022-09-28 19:12:05 +08:00
parent 38d8d19054
commit 1cb8b8c2cd
6 changed files with 7 additions and 13 deletions

View File

@ -144,9 +144,6 @@
inputs.guix-overlay.nixosModules.guix inputs.guix-overlay.nixosModules.guix
]; ];
# Bleeding edge, baybee!
nix.package = lib.mkDefault pkgs.nixUnstable;
# I want to capture the usual flakes to its exact version so we're # I want to capture the usual flakes to its exact version so we're
# making them available to our system. This will also prevent the # making them available to our system. This will also prevent the
# annoying downloads since it always get the latest revision. # annoying downloads since it always get the latest revision.

View File

@ -161,10 +161,7 @@ in {
hardware.opentabletdriver.enable = true; hardware.opentabletdriver.enable = true;
# Enable support for Bluetooth. # Enable support for Bluetooth.
hardware.bluetooth = { hardware.bluetooth.enable = true;
enable = true;
package = pkgs.bluezFull;
};
}) })
(lib.mkIf cfg.cleanup.enable { (lib.mkIf cfg.cleanup.enable {

View File

@ -19,7 +19,7 @@ buildPythonPackage rec {
typing-extensions typing-extensions
hypothesis hypothesis
iso8601 iso8601
dateutil python-dateutil
attrs attrs
attrs-strict attrs-strict

View File

@ -13,7 +13,7 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
click click
requests requests

View File

@ -13,7 +13,7 @@
, libglvnd , libglvnd
, mesa , mesa
, SDL2 , SDL2
, pkgconfig , pkg-config
, valgrind , valgrind
, sndio , sndio
, libsamplerate , libsamplerate
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
substituteInPlace CMakeLists.txt --replace '@mruby@' "${mruby}" substituteInPlace CMakeLists.txt --replace '@mruby@' "${mruby}"
''; '';
nativeBuildInputs = [ cmake pkgconfig ]; nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ buildInputs = [
alsaLib alsaLib
freeglut freeglut

View File

@ -2,7 +2,7 @@
# to use the `rust` template from `nixpkgs` or whatever you prefer. # to use the `rust` template from `nixpkgs` or whatever you prefer.
{ mkShell { mkShell
, openssl , openssl
, pkgconfig , pkg-config
, cargo , cargo
, rustc , rustc
, rustfmt , rustfmt
@ -14,7 +14,7 @@
mkShell { mkShell {
buildInputs = [ buildInputs = [
openssl # In case some package needs it. openssl # In case some package needs it.
pkgconfig # In case some other package needs it. pkg-config # In case some other package needs it.
# Rust platform. # Rust platform.
cargo cargo