update flake

This commit is contained in:
XenGi 2023-10-24 17:08:45 +02:00
parent 2a856f4ecc
commit 024df2bb9f
Signed by: xengi
SSH key fingerprint: SHA256:EvLbWxFCtfmd+8Xa6RkzkhIga+wFkKCekfFacYVn63M
2 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
result
# Created by https://www.toptal.com/developers/gitignore/api/linux,windows,macos,vim,goland+all,go,direnv # Created by https://www.toptal.com/developers/gitignore/api/linux,windows,macos,vim,goland+all,go,direnv
# Edit at https://www.toptal.com/developers/gitignore?templates=linux,windows,macos,vim,goland+all,go,direnv # Edit at https://www.toptal.com/developers/gitignore?templates=linux,windows,macos,vim,goland+all,go,direnv

View file

@ -22,15 +22,16 @@
modules = ./gomod2nix.toml; modules = ./gomod2nix.toml;
}; };
in { in {
defaultPackage = sanic;
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
go go
gomod2nix.packages.${system}.default gomod2nix.packages.${system}.default
sanic
]; ];
packages = with pkgs; [ packages = with pkgs; [
mpd mpd
mpc-cli mpc-cli
sanic
]; ];
}; };
} }