feat: add nix-melt with flake
This commit is contained in:
parent
8713da209b
commit
c9cd780930
2 changed files with 11 additions and 2 deletions
|
@ -27,6 +27,11 @@
|
|||
url = "github:nix-community/neovim-nightly-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nix-melt = {
|
||||
url = "github:nix-community/nix-melt";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, nur, ... }@attrs: {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, config, ... }:
|
||||
{ pkgs, config, nix-melt, ... }:
|
||||
|
||||
{
|
||||
programs = {
|
||||
|
@ -24,7 +24,11 @@
|
|||
};
|
||||
};
|
||||
|
||||
home.packages = (with pkgs.python311Packages; [
|
||||
home.packages = [
|
||||
nix-melt.packages.x86_64-linux.default
|
||||
] ++
|
||||
|
||||
(with pkgs.python311Packages; [
|
||||
python
|
||||
pyclip
|
||||
]) ++
|
||||
|
|
Loading…
Add table
Reference in a new issue