From a20ac45bd56211d004339642679b13db37765d65 Mon Sep 17 00:00:00 2001 From: Uttarayan Date: Sun, 18 Feb 2024 01:17:40 +0530 Subject: [PATCH] [feat] Add anyrun configs --- config/nix/common/home.nix | 5 +---- config/nix/flake.nix | 4 +--- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/config/nix/common/home.nix b/config/nix/common/home.nix index a2f25c0b..14002456 100644 --- a/config/nix/common/home.nix +++ b/config/nix/common/home.nix @@ -20,6 +20,7 @@ in ]; home.packages = with pkgs; [ + qmk nodejs nix-index yubikey-personalization @@ -33,16 +34,12 @@ in rustup cmake fzf - anyrun clang ncpamixer neovim-nightly yubikey-agent (nerdfonts.override {fonts = ["Hasklig"];}) mpv - # # Adds the 'hello' command to your environment. It prints a friendly - # # "Hello, world!" when run. - # pkgs.hello # # It is sometimes useful to fine-tune packages, for example, by applying # # overrides. You can do that directly here, just don't forget the diff --git a/config/nix/flake.nix b/config/nix/flake.nix index 71d7a01b..84410e65 100644 --- a/config/nix/flake.nix +++ b/config/nix/flake.nix @@ -125,14 +125,12 @@ home-manager.lib.homeManagerConfiguration { inherit pkgs; extraSpecialArgs = { + inherit inputs; inherit device; }; modules = [ {nixpkgs.overlays = overlays;} ./common/home.nix - { - nixpkgs.overlays = overlays; - } ]; }; })