mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-22 05:12:56 -05:00
flake/inputs/nur: migrate to new overlay
This commit is contained in:
parent
5b9ea32927
commit
ef2257f061
|
@ -39,6 +39,9 @@
|
|||
|
||||
nixpkgs = {
|
||||
config.allowUnfree = true; # Allow unfree packages
|
||||
overlays = [self.overlays.default];
|
||||
overlays = [
|
||||
self.inputs.nur.overlays.default
|
||||
self.overlays.default
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,7 +10,6 @@ self: {
|
|||
./windowManagers
|
||||
self.homeManagerModules.default
|
||||
self.inputs.agenix.homeManagerModules.default
|
||||
self.inputs.nur.hmModules.nur
|
||||
];
|
||||
|
||||
home = {
|
||||
|
|
|
@ -1,14 +1,10 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
|
||||
profiles = {
|
||||
default = {
|
||||
extensions = with config.nur.repos.rycee.firefox-addons; [
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
augmented-steam
|
||||
bitwarden
|
||||
omnivore
|
||||
|
@ -148,7 +144,7 @@
|
|||
};
|
||||
|
||||
work = {
|
||||
extensions = with config.nur.repos.rycee.firefox-addons; [
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
bitwarden
|
||||
clearurls
|
||||
consent-o-matic
|
||||
|
|
Loading…
Reference in a new issue