From 3347d3a431402a1974758c2ea23e8e8c9368ab6c Mon Sep 17 00:00:00 2001 From: iFargle Date: Sun, 2 Jul 2023 15:58:48 +0900 Subject: [PATCH] Add the NUR overlay --- common/dotfiles/firefox.nix | 2 +- flake.nix | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/common/dotfiles/firefox.nix b/common/dotfiles/firefox.nix index 8c256036..73df53c5 100644 --- a/common/dotfiles/firefox.nix +++ b/common/dotfiles/firefox.nix @@ -1,4 +1,4 @@ -{ config, pkgs, nur, ... }: { +{ config, pkgs, ... }: { programs.firefox = { enable = true; diff --git a/flake.nix b/flake.nix index 36a99ba7..a8050fdb 100644 --- a/flake.nix +++ b/flake.nix @@ -67,10 +67,11 @@ # nixpkgs overlays nixpkgs.overlays = [ moz_overlay.overlay + nur.overlay ]; } ]; # modules - }; # lib.nixosSystem - nixos-laptop + }; # lib.nixosSystem - ${hostname} }; # nixosConfiguration }; }