20 lines
604 B
Nix
20 lines
604 B
Nix
|
{
|
||
|
description = "Build my xmonad config";
|
||
|
|
||
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils }:
|
||
|
|
||
|
flake-utils.lib.eachDefaultSystem (system:
|
||
|
let pkgs = nixpkgs.legacyPackages.${system}; in
|
||
|
{
|
||
|
devShells.default = import ./shell.nix { inherit pkgs; };
|
||
|
}) // {
|
||
|
packages.x86_64-linux.default =
|
||
|
# Notice the reference to nixpkgs here.
|
||
|
with import nixpkgs { system = "x86_64-linux"; };
|
||
|
haskellPackages.callCabal2nix "xmonad-config" ./. {};
|
||
|
};
|
||
|
}
|