diff --git a/flake2.nix b/flake2.nix deleted file mode 100644 index 74881a1..0000000 --- a/flake2.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ - description = "A simple flake for a nix-shell"; - - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; - }; - - outputs = { self, nixpkgs, ... }: - let - lib = nixpkgs.lib; - in { - nixosConfigurations = { - hp-laptop-lho = lib.nixosSystem { - system = "x86_64-linux"; - modules = [ ./configuration.nix ]; - }; - }; - }; -}