diff options
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 84 |
1 files changed, 47 insertions, 37 deletions
diff --git a/flake.nix b/flake.nix index f5b1a48..39cd74a 100644 --- a/flake.nix +++ b/flake.nix @@ -84,33 +84,43 @@ ref = "master"; inputs = { emacs-overlay.follows = "emacs-overlay"; - flake-compat.follows = "flake-compat"; flake-utils.follows = "flake-utils"; nixpkgs.follows = "nixpkgs"; }; }; - nix-minecraft-servers = { - type = "github"; - owner = "jyooru"; - repo = "nix-minecraft-servers"; - ref = "main"; - inputs = { - nixpkgs.follows = "nixpkgs"; - utils.follows = "flake-utils-plus"; - }; - }; + # nil = { + # type = "github"; + # owner = "oxalica"; + # repo = "nil"; + # ref = "main"; + # inputs = { + # flake-utils.follows = "flake-utils"; + # nixpkgs.follows = "nixpkgs"; + # }; + # }; - pollymc = { - type = "github"; - owner = "fn2006"; - repo = "PollyMC"; - ref = "1.4.2"; - inputs = { - flake-compat.follows = "flake-compat"; - nixpkgs.follows = "nixpkgs"; - }; - }; + # nix-minecraft-servers = { + # type = "github"; + # owner = "jyooru"; + # repo = "nix-minecraft-servers"; + # ref = "main"; + # inputs = { + # nixpkgs.follows = "nixpkgs"; + # utils.inputs.flake-utils.follows = "flake-utils"; + # }; + # }; + + # pollymc = { + # type = "github"; + # owner = "fn2006"; + # repo = "PollyMC"; + # ref = "5.1"; + # inputs = { + # flake-compat.follows = "flake-compat"; + # nixpkgs.follows = "nixpkgs"; + # }; + # }; dns-nix = { type = "github"; @@ -210,25 +220,25 @@ flake = false; }; - # NOTE These inputs are used indirectly by other inputs. These are declared - # explicitly because nested follows are broken[1]. + # NOTE These inputs are used indirectly. They are declared explicitly here + # because nested follows is not yet release in a stable version of nix[1]. # # [1]: https://github.com/NixOS/nix/issues/5790 # [1]: https://github.com/NixOS/nix/pull/6621 - flake-utils-plus = { - type = "github"; - owner = "gytis-ivaskevicius"; - repo = "flake-utils-plus"; - ref = "master"; - inputs.flake-utils.follows = "flake-utils"; - }; - flake-compat = { - type = "github"; - owner = "edolstra"; - repo = "flake-compat"; - ref = "master"; - flake = false; - }; + # flake-utils-plus = { + # type = "github"; + # owner = "gytis-ivaskevicius"; + # repo = "flake-utils-plus"; + # ref = "master"; + # inputs.flake-utils.follows = "flake-utils"; + # }; + # flake-compat = { + # type = "github"; + # owner = "edolstra"; + # repo = "flake-compat"; + # ref = "master"; + # flake = false; + # }; }; outputs = inputs: |