Skip to content

Commit

Permalink
chore(deps): lock file maintenance (#133)
Browse files Browse the repository at this point in the history
* chore(deps): lock file maintenance

* update flake locks

* error: nur.hmModules.nur has been replaced by nur.modules.homeManager.default

* catppuccin option changes

---------

Co-authored-by: anthonyenr1quez-renovate[bot] <117547040+anthonyenr1quez-renovate[bot]@users.noreply.github.com>
Co-authored-by: AnthonyEnr1quez <32233059+AnthonyEnr1quez@users.noreply.github.com>
  • Loading branch information
1 parent 2990e20 commit cf41032
Show file tree
Hide file tree
Showing 6 changed files with 99 additions and 46 deletions.
109 changes: 79 additions & 30 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};
catppuccin.url = "github:catppuccin/nix";
nur.url = "github:nix-community/NUR";
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};

nixos-wsl = {
url = "github:nix-community/NixOS-WSL";
Expand Down Expand Up @@ -67,11 +70,14 @@
(
{ pkgs, config, inputs, ... }:
{
nixpkgs.overlays = [ firefox-darwin.overlay ];
nixpkgs.overlays = [
firefox-darwin.overlay
nur.overlays.default
];
home-manager.sharedModules = [
catppuccin.homeManagerModules.catppuccin
mac-app-util.homeManagerModules.default
nur.hmModules.nur
nur.modules.homeManager.default
];
}
)
Expand Down
6 changes: 3 additions & 3 deletions hosts/darwin/MacBook-Pro-2/direnvs/mf/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions hosts/darwin/damascus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
hm = {
firefox-dev = {
bookmarksToolbar = "never";
# lol, there has to be an easier way
extraExtensions = with config.home-manager.users.${config.user.name}.nur.repos.rycee.firefox-addons; [
extraExtensions = with pkgs.nur.repos.rycee.firefox-addons; [
facebook-container
multi-account-containers
news-feed-eradicator
Expand Down
13 changes: 6 additions & 7 deletions modules/home-manager/catppuccin/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{ config, pkgs, ... }: {
catppuccin.flavor = "mocha";
catppuccin = {
flavor = "mocha";

# todo, probably should be where we enable these
programs = {
bat.catppuccin.enable = true;
fzf.catppuccin.enable = true;
# k9s.catppuccin.enable = true;
kitty.catppuccin.enable = true;
bat.enable = true;
fzf.enable = true;
# k9s.enable = true; # TODO
kitty.enable = true;
};
}
2 changes: 1 addition & 1 deletion modules/home-manager/firefox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ in
profiles.default = {
isDefault = true;

extensions = with config.nur.repos.rycee.firefox-addons; [
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
bitwarden
privacy-badger
refined-github
Expand Down

0 comments on commit cf41032

Please sign in to comment.