This commit is contained in:
Pim Kunis 2023-09-24 15:50:50 +02:00
parent 2668e3dd78
commit 3b12c1816f
2 changed files with 8 additions and 6 deletions

View file

@ -1,6 +1,6 @@
{pkgs, ...}@args: {pkgs, nurpkgs, ...}@args:
let let
rycee-addons = with pkgs.nur.repos.rycee.firefox-addons; [ rycee-addons = with nurpkgs.repos.rycee.firefox-addons; [
ublock-origin ublock-origin
clearurls clearurls
cookie-autodelete cookie-autodelete

View file

@ -1,16 +1,18 @@
{ pkgs, lib, stateVersion, ... }@args: { pkgs, ... }@args:
let
nurpkgs = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { inherit pkgs; };
in
{ {
home = { home = {
username = "pim"; username = "pim";
homeDirectory = "/home/pim"; homeDirectory = "/home/pim";
stateVersion = stateVersion; stateVersion = "23.05";
packages = with pkgs; [ packages = with pkgs; [
keepassxc keepassxc
nil nil
moonlight-qt moonlight-qt
cowsay cowsay
home-manager
]; ];
}; };
@ -44,7 +46,7 @@
settings = { settings = {
"browser.aboutConfig.showWarning" = false; "browser.aboutConfig.showWarning" = false;
}; };
extensions = import ./firefox-addons args; extensions = import ./firefox-addons (args // {inherit nurpkgs; });
}; };
}; };