nixos-config/flake.nix
Christoph Heiss cfce85236d
tree-wide: Update nixpkgs and home-manager to 30-06-2023
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-07-05 18:19:13 +02:00

20 lines
542 B
Nix

{
description = "c8h4.io NixOS configuration";
inputs = {
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "refs/heads/nixos-unstable";
rev = "4bc72cae107788bf3f24f30db2e2f685c9298dc9"; # 30-06-2023
};
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in { devShells.default = import ./shell.nix { inherit pkgs; }; });
}