mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
config: change removed aliases to their non-aliased versions
This commit is contained in:
parent
38d8d19054
commit
1cb8b8c2cd
@ -144,9 +144,6 @@
|
||||
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
|
||||
# making them available to our system. This will also prevent the
|
||||
# annoying downloads since it always get the latest revision.
|
||||
|
@ -161,10 +161,7 @@ in {
|
||||
hardware.opentabletdriver.enable = true;
|
||||
|
||||
# Enable support for Bluetooth.
|
||||
hardware.bluetooth = {
|
||||
enable = true;
|
||||
package = pkgs.bluezFull;
|
||||
};
|
||||
hardware.bluetooth.enable = true;
|
||||
})
|
||||
|
||||
(lib.mkIf cfg.cleanup.enable {
|
||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||
typing-extensions
|
||||
hypothesis
|
||||
iso8601
|
||||
dateutil
|
||||
python-dateutil
|
||||
attrs
|
||||
attrs-strict
|
||||
|
||||
|
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
||||
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
click
|
||||
requests
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
, libglvnd
|
||||
, mesa
|
||||
, SDL2
|
||||
, pkgconfig
|
||||
, pkg-config
|
||||
, valgrind
|
||||
, sndio
|
||||
, libsamplerate
|
||||
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace CMakeLists.txt --replace '@mruby@' "${mruby}"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
buildInputs = [
|
||||
alsaLib
|
||||
freeglut
|
||||
|
@ -2,7 +2,7 @@
|
||||
# to use the `rust` template from `nixpkgs` or whatever you prefer.
|
||||
{ mkShell
|
||||
, openssl
|
||||
, pkgconfig
|
||||
, pkg-config
|
||||
, cargo
|
||||
, rustc
|
||||
, rustfmt
|
||||
@ -14,7 +14,7 @@
|
||||
mkShell {
|
||||
buildInputs = [
|
||||
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.
|
||||
cargo
|
||||
|
Loading…
Reference in New Issue
Block a user