NixOSConfig/flake.nix

17 lines
346 B
Nix
Raw Normal View History

2023-12-01 11:29:39 +00:00
{
description = "NixOS Machine Configurations by manuth";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = import ./lib/system.nix {
inherit nixpkgs;
};
2023-12-01 11:29:39 +00:00
in {
nixosConfigurations.manu-surface = system "manu-surface" {};
};
}