NixOSConfig/flake.nix

15 lines
301 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 ./system.nix;
in {
nixosConfigurations.manu-surface = system "manu-surface" {};
};
}