[feat] Add anyrun configs

This commit is contained in:
Uttarayan
2024-02-18 01:17:40 +05:30
parent 9823b84289
commit a20ac45bd5
2 changed files with 2 additions and 7 deletions

View File

@@ -20,6 +20,7 @@ in
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
qmk
nodejs nodejs
nix-index nix-index
yubikey-personalization yubikey-personalization
@@ -33,16 +34,12 @@ in
rustup rustup
cmake cmake
fzf fzf
anyrun
clang clang
ncpamixer ncpamixer
neovim-nightly neovim-nightly
yubikey-agent yubikey-agent
(nerdfonts.override {fonts = ["Hasklig"];}) (nerdfonts.override {fonts = ["Hasklig"];})
mpv 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 # # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the # # overrides. You can do that directly here, just don't forget the

View File

@@ -125,14 +125,12 @@
home-manager.lib.homeManagerConfiguration { home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs;
inherit device; inherit device;
}; };
modules = [ modules = [
{nixpkgs.overlays = overlays;} {nixpkgs.overlays = overlays;}
./common/home.nix ./common/home.nix
{
nixpkgs.overlays = overlays;
}
]; ];
}; };
}) })