46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{
|
|
description = "finances environment";
|
|
|
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
inputs.devshell.url = "github:numtide/devshell";
|
|
inputs.flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
outputs = inputs@{ self, flake-parts, devshell, nixpkgs }:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
imports = [
|
|
devshell.flakeModule
|
|
];
|
|
|
|
systems = [
|
|
"aarch64-darwin"
|
|
"aarch64-linux"
|
|
"i686-linux"
|
|
"x86_64-darwin"
|
|
"x86_64-linux"
|
|
];
|
|
|
|
perSystem = { pkgs, ... }: {
|
|
devshells.default = {
|
|
# Add additional packages you'd like to be available in your devshell
|
|
# PATH here
|
|
devshell.packages = with pkgs; [
|
|
hledger
|
|
hledger-web
|
|
];
|
|
commands = [
|
|
# Example
|
|
#{
|
|
# help = pkgs.cachix.meta.description;
|
|
# name = pkgs.cachix.pname;
|
|
# package = pkgs.cachix;
|
|
#}
|
|
];
|
|
# Add extra shell environment variables or aliases to be set in the
|
|
# devshell
|
|
bash.extra = ''
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|