Corrected missing boilerplate from flake.nix

This commit is contained in:
Luke Else 2025-03-20 15:59:18 +00:00
parent 5965d43eff
commit e555963e79

View File

@ -1,3 +1,12 @@
{
description = "NixOS Configuration for Laptop, Desktop and VM";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
@ -35,3 +44,4 @@ outputs = { nixpkgs, home-manager, ... }:
};
};
};
}