aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--srv/hadante/fjordlauncher.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/srv/hadante/fjordlauncher.nix b/srv/hadante/fjordlauncher.nix
index 912ccc5..5245cdc 100644
--- a/srv/hadante/fjordlauncher.nix
+++ b/srv/hadante/fjordlauncher.nix
@@ -1,4 +1,9 @@
-{ inputs, pkgs, ... }:
+{
+ inputs,
+ pkgs,
+ fjordlauncher,
+ ...
+}:
{
config = {
nix.settings = {
@@ -8,13 +13,8 @@
"unmojang.cachix.org-1:OfHnbBNduZ6Smx9oNbLFbYyvOWSoxb2uPcnXPj4EDQY="
];
};
- nixpkgs = {
- overlays = [
- inputs.fjordlauncher.overlays.default
- ];
- };
environment.systemPackages = [
- pkgs.fjordlauncher
+ fjordlauncher.packages.${pkgs.system}.fjordlauncher
];
};
}