mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 14:33:56 -05:00
Aly Raffauf
29bc4af56e
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* initial committ * move plymouth and printing to desktop modules * rename commonModules -> common * rename commonModules -> common * move nix settings base -> common/nix * nix fmt * move baseModules to common/base
33 lines
706 B
Nix
33 lines
706 B
Nix
{
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: let
|
|
unstable = import self.inputs.nixpkgs-unstable {
|
|
system = pkgs.system;
|
|
};
|
|
in {
|
|
nixpkgs = {
|
|
config.allowUnfree = true; # Allow unfree packages
|
|
|
|
overlays = [
|
|
(final: prev: {
|
|
rofi-bluetooth =
|
|
prev.rofi-bluetooth.overrideAttrs
|
|
(old: {
|
|
version = "unstable-2024-07-25";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "alyraffauf";
|
|
repo = old.pname;
|
|
rev = "50252e4a9aebe4899a6ef2f7bc11d91b7e4aa8ae";
|
|
sha256 = "sha256-o0Sr3/888L/2KzZZP/EcXx+8ZUzdHB/I/VIeVuJvJks=";
|
|
};
|
|
});
|
|
|
|
zed-editor = unstable.zed-editor;
|
|
})
|
|
];
|
|
};
|
|
}
|