DEVELOPMENT ENVIRONMENT

~liljamo/install-garmin-watch-face

ref: 3732fc05916cfc48f832c6d8cc21536723483e31 install-garmin-watch-face/flake.nix -rw-r--r-- 406 bytes
3732fc05Jonni Liljamo feat: init 3 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  inputs = {
    #nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    nixpkgs.url = "github:liljamo/nixpkgs/hare-0.25.2";
  };

  outputs = inputs @ {...}: let
    pkgs = inputs.nixpkgs.legacyPackages."x86_64-linux";
  in {
      devShells.x86_64-linux.default = pkgs.mkShell {
        buildInputs = with pkgs;
          [
            hare

            simple-mtpfs
          ];
      };
    };
}