removed flake2

This commit is contained in:
Lorenz Hohermuth 2024-07-22 23:23:22 +02:00
parent c8b71e2a2f
commit 1bac00a404
1 changed files with 0 additions and 19 deletions

View File

@ -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 ];
};
};
};
}