nixosConfig: specialArgs = "inputs" -> "{inherit inputs;}"
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ lib, config, pkgs, nixpkgs, ... }: {
|
||||
{ lib, config, pkgs, inputs, ... }: {
|
||||
nix.settings.auto-optimise-store = true;
|
||||
nix.registry.nixpkgs.flake = nixpkgs;
|
||||
nix.registry.nixpkgs.flake = inputs.nixpkgs;
|
||||
|
||||
# Allow user-mode qemu for running riscv64 binaries
|
||||
# boot.binfmt.emulatedSystems = [ "riscv64-linux" ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, config, pkgs, nixpkgs, ... }: {
|
||||
{ lib, config, pkgs, ... }: {
|
||||
nixpkgs.overlays = [(self: super: rec {
|
||||
# Discord fix
|
||||
discord = super.discord.override {
|
||||
|
||||
Reference in New Issue
Block a user