diff --git a/flake.lock b/flake.lock index 9c69cf0..cc522f3 100644 --- a/flake.lock +++ b/flake.lock @@ -272,11 +272,11 @@ }, "locked": { "dir": "contrib", - "lastModified": 1679013660, - "narHash": "sha256-/g02wJF9c3BHcL5LyjeOvTLbms0Uem58BlnbYXdC3E0=", + "lastModified": 1679261557, + "narHash": "sha256-NCWm1gDG7RABdg2uyNn1oEv8oUkWgQZkE189L+SE5p4=", "owner": "neovim", "repo": "neovim", - "rev": "accdb0104eb607a66a9908f24fbd13552d058765", + "rev": "84027f7515b8ee6f818462f105882fc0052783c4", "type": "github" }, "original": { @@ -295,11 +295,11 @@ ] }, "locked": { - "lastModified": 1679040884, - "narHash": "sha256-f9Cn5FlP9L7Fm/DzdB9CmssQovo/SnF980b4HqMoaAc=", + "lastModified": 1679300129, + "narHash": "sha256-o+2LoOq2bKAAaneMCmsWGqvzhwNkb5OyNm5sQOm2adw=", "owner": "nix-community", "repo": "neovim-nightly-overlay", - "rev": "403d5f861bd4357b4bc4f7d3be8b42292e6bb4f4", + "rev": "18c8b70ac8793009bb22bb5c53817ff9c27bdc12", "type": "github" }, "original": { diff --git a/home/adrielus/features/desktop/common/firefox.nix b/home/adrielus/features/desktop/common/firefox.nix index 910461b..81c904c 100644 --- a/home/adrielus/features/desktop/common/firefox.nix +++ b/home/adrielus/features/desktop/common/firefox.nix @@ -161,6 +161,13 @@ in displayName = "Gitlab"; id = 3; }; + + desmos = { + url = "https://www.desmos.com/calculator"; + icon = ./icons/desmos.png; + displayName = "Desmos"; + id = 4; + }; }; }; } diff --git a/home/adrielus/features/desktop/common/icons/desmos.png b/home/adrielus/features/desktop/common/icons/desmos.png new file mode 100644 index 0000000..e3b3f98 Binary files /dev/null and b/home/adrielus/features/desktop/common/icons/desmos.png differ diff --git a/home/adrielus/features/neovim/default.nix b/home/adrielus/features/neovim/default.nix index 225baf1..021d35d 100644 --- a/home/adrielus/features/neovim/default.nix +++ b/home/adrielus/features/neovim/default.nix @@ -86,7 +86,7 @@ let }; # }}} # {{{ Clients - neovim = wrapClient { base = pkgs.neovim-nightly; name = "nvim"; }; + neovim = wrapClient { base = pkgs.neovim; name = "nvim"; }; neovide = wrapClient { base = pkgs.neovide; @@ -95,7 +95,7 @@ let }; firenvim = wrapClient { - base = pkgs.neovim-nightly; + base = pkgs.neovim; name = "firenvim"; binName = "nvim"; extraArgs = "--set GIT_DISCOVERY_ACROSS_FILESYSTEM 1";