This commit is contained in:
Aria Nolan 2023-11-05 01:32:53 -05:00
parent 2a9236e833
commit 47746c387a
3 changed files with 21 additions and 3 deletions

View file

@ -140,12 +140,28 @@
"type": "github" "type": "github"
} }
}, },
"nur": {
"locked": {
"lastModified": 1699163564,
"narHash": "sha256-Jxb/JkUJhXKalVRlhnh2B+lkGASxQ5vrymcHtU71qyI=",
"owner": "nix-community",
"repo": "nur",
"rev": "88abb29a4bfbd84a2f20380c2595db77d36c3635",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "nur",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"helix": "helix", "helix": "helix",
"home-manager": "home-manager", "home-manager": "home-manager",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"nur": "nur"
} }
}, },
"rust-overlay": { "rust-overlay": {

View file

@ -23,6 +23,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixos-hardware.url = "github:NixOs/nixos-hardware/master"; nixos-hardware.url = "github:NixOs/nixos-hardware/master";
nur.url = "github:nix-community/nur";
}; };
# pass in the urls defined above # pass in the urls defined above
@ -33,6 +34,7 @@
home-manager, home-manager,
helix, helix,
nixos-hardware, nixos-hardware,
nur,
... ...
}: let }: let
system = "x86_64-linux"; system = "x86_64-linux";

View file

@ -1,9 +1,9 @@
{pkgs, ...}: { {inputs, ...}: {
programs.firefox = { programs.firefox = {
enable = true; enable = true;
profiles = { profiles = {
"aria" = { "aria" = {
extensions = with pkgs.nur.repos.rycee.firefox-addons; [ extensions = with inputs.nur.repos.rycee.firefox-addons; [
ublock-origin ublock-origin
]; ];
}; };