From 1bac00a4041ad544ddb7ea79d9067edc122126d0 Mon Sep 17 00:00:00 2001 From: lorenzhohermuth Date: Mon, 22 Jul 2024 23:23:22 +0200 Subject: [PATCH] removed flake2 --- flake2.nix | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 flake2.nix 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 ]; - }; - }; - }; -}