diff --git a/nixos/flakes/flake.nix b/nixos/flakes/flake.nix deleted file mode 100644 index 619f45d..0000000 --- a/nixos/flakes/flake.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - description = "System Config"; - - inputs = { - nixpkgs.url = "nixpkgs/nixos-21.05"; - home-manager.url = "github:nix-community/home-manager/release-21.05"; - home-manager.inputs.nixpkgs.follows = "nixpkgs"; - }; - - outputs = { nixpkgs, home-manager, ... }: { - let - system = "x86_64-linux"; - - pkgs = import nixpkgs { - inherit system; - config = { allowUnfree = true; }; - }; - - lib = nixpkgs.lib; - - in { - nixosConfigurations = { - nixos = lib.nixosSystem { - inherit system; - modules = [ - ./configuration.nix - ] - }; - }; - }; -}