nixos-config/modules/packages.nix

81 lines
2.2 KiB
Nix
Raw Normal View History

2020-04-27 05:39:00 +04:00
{ pkgs, config, lib, inputs, ... }:
2020-02-17 17:00:59 +04:00
let
filterGit =
builtins.filterSource (type: name: name != ".git" || type != "directory");
2020-04-28 21:48:57 +04:00
system = "x86_64-linux";
old = import inputs.nixpkgs-old ({
config = config.nixpkgs.config;
localSystem = { inherit system; };
});
in {
2020-02-17 17:00:59 +04:00
nixpkgs.overlays = [
2020-04-28 21:48:57 +04:00
inputs.nix.overlay
2020-02-17 17:00:59 +04:00
(self: super:
rec {
2020-04-28 21:48:57 +04:00
nix = super.nix // {
meta = super.nix.meta // { platforms = lib.platforms.unix; };
};
nur = (import inputs.NUR {
pkgs = old;
nurpkgs = pkgs;
}).repos;
2020-02-17 17:00:59 +04:00
inherit (nur.balsoft.pkgs) termNote lambda-launcher nix-patch;
2020-05-10 01:51:05 +04:00
inherit (old) mautrix-telegram;
2020-02-17 17:00:59 +04:00
yt-utilities =
import (self.fetchgit config.secrets.yt-utilities.source) { };
nerdfonts = nur.balsoft.pkgs.roboto-mono-nerd;
2020-04-28 21:48:57 +04:00
mobile-broadband-provider-info =
super.mobile-broadband-provider-info.overrideAttrs (oa: {
src = inputs.mobile-broadband-provider-info;
nativeBuildInputs = [ self.autoreconfHook ];
buildInputs = [ self.libxslt ];
});
2020-05-08 09:20:58 +04:00
})
2020-04-30 15:33:26 +04:00
(self: super: builtins.mapAttrs (_: v: pkgs.callPackage v.override { }) {
inherit (import inputs.nixpkgs-mopidy {
localSystem.system = "x86_64-linux";
})
2020-04-30 15:56:01 +04:00
mopidy mopidy-gmusic mopidy-mpd mopidy-mpris mopidy-youtube pykka;
2020-04-30 15:33:26 +04:00
})
2020-02-17 17:00:59 +04:00
];
2020-04-27 05:39:00 +04:00
nixpkgs.config = {
allowUnfree = true;
android_sdk.accept_license = true;
firefox.enablePlasmaBrowserIntegration = true;
};
environment.etc.nixpkgs.source = inputs.nixpkgs;
2020-02-17 17:00:59 +04:00
nix = rec {
nixPath = lib.mkForce [
"nixpkgs=/etc/nixpkgs"
"nixos-config=/etc/nixos/configuration.nix"
];
binaryCaches = [ "https://cache.nixos.org" "https://cache.balsoft.ru" ];
2020-02-17 17:00:59 +04:00
2020-05-09 13:27:10 +04:00
registry.nixpkgs = {
from = { id = "nixpkgs"; type = "indirect"; };
flake = inputs.nixpkgs;
};
2020-02-17 17:00:59 +04:00
trustedUsers = [ "root" "balsoft" "@wheel" ];
nrBuildUsers = 16;
2020-02-17 17:00:59 +04:00
optimise.automatic = true;
binaryCachePublicKeys =
[ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
package = inputs.nix.packages.x86_64-linux.nix;
2020-04-27 05:39:00 +04:00
extraOptions = ''
experimental-features = nix-command flakes
'';
2020-02-17 17:00:59 +04:00
};
}