First Commit

This commit is contained in:
2025-04-27 20:35:46 -05:00
commit 2eb60931e1
3 changed files with 92 additions and 0 deletions

17
flake.nix Normal file
View File

@@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:NixOs/nixpkgs";
};
outputs =
{ nixpkgs, home-manager, ... } @ inputs:
let
system = "x86_64-linux";
in
{
nixos-vm = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
modules = [
./modules
}