feat: add nix-melt with flake

This commit is contained in:
matt1432 2023-10-11 18:03:15 -04:00
parent 8713da209b
commit c9cd780930
2 changed files with 11 additions and 2 deletions

View file

@ -27,6 +27,11 @@
url = "github:nix-community/neovim-nightly-overlay"; url = "github:nix-community/neovim-nightly-overlay";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nix-melt = {
url = "github:nix-community/nix-melt";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { self, nixpkgs, home-manager, nur, ... }@attrs: { outputs = { self, nixpkgs, home-manager, nur, ... }@attrs: {

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }: { pkgs, config, nix-melt, ... }:
{ {
programs = { programs = {
@ -24,7 +24,11 @@
}; };
}; };
home.packages = (with pkgs.python311Packages; [ home.packages = [
nix-melt.packages.x86_64-linux.default
] ++
(with pkgs.python311Packages; [
python python
pyclip pyclip
]) ++ ]) ++