Update to 24.05

This commit is contained in:
Filippo Berto 2024-05-29 13:45:48 +02:00
parent c84fe9bb12
commit ed1a2c021a
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
11 changed files with 39 additions and 31 deletions

View file

@ -1,5 +1,5 @@
{ pkgs, config, lib, ... }: {
home.packages = (builtins.attrValues { inherit (pkgs) docker-compose docker-machine; })
home.packages = (builtins.attrValues { inherit (pkgs) docker-compose; })
++ lib.optionals config.programs.helix.enable (builtins.attrValues { inherit (pkgs.nodePackages) dockerfile-language-server-nodejs; });
home.shellAliases = {
"dkcd" = "docker-compose down";

View file

@ -1,6 +1,6 @@
{ pkgs, config, lib, ... }: {
home.packages =
(builtins.attrValues { inherit (pkgs) nixpkgs-fmt nixfmt nix-prefetch-scripts nixpkgs-review nix-tree; })
(builtins.attrValues { inherit (pkgs) nixpkgs-fmt nixfmt-classic nix-prefetch-scripts nixpkgs-review nix-tree; })
++ lib.optionals config.programs.helix.enable [ pkgs.nil ]
++ lib.optionals config.programs.kakoune.enable [ pkgs.rnix-lsp ];
programs.neovim.plugins = [ pkgs.vimPlugins.vim-nix ];