This commit is contained in:
4DBug
2026-03-11 22:40:03 -05:00
parent 662e8a2f03
commit 90a2a8cf4b
5 changed files with 14 additions and 15 deletions

View File

@@ -2,4 +2,4 @@
# Do not delete. # Do not delete.
folderID: nix folderID: nix
created: 2026-01-29T23:06:32-06:00 created: 2026-01-29T23:05:44-06:00

View File

@@ -52,7 +52,5 @@
# hytale-launcher.url = "github:JPyke3/hytale-launcher-nix"; # hytale-launcher.url = "github:JPyke3/hytale-launcher-nix";
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release"; nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*";
}; };
} }

View File

@@ -1,7 +0,0 @@
{ inputs }: {
den.aspects.determinate = {
nixos = {
imports = [ inputs.determinate.nixosModules.default ];
};
};
}

View File

@@ -1,5 +1,5 @@
{ den, ... }: { { den, ... }: {
den.aspects.compatibility = { den.aspects.compatibility = {
includes = with den.aspects; [ wine appimage nix-ld ]; includes = with den.aspects; [ wine appimage nix-ld nix-alien ];
}; };
} }

View File

@@ -1,5 +1,13 @@
{ {
# nix-alien = import ( den.aspects.nix-alien = {
# builtins.fetchTarball "https://github.com/thiagokokada/nix-alien/tarball/master" nixos = {
# ) {}; environment.systemPackages = let
nix-alien = import (
builtins.fetchTarball "https://github.com/thiagokokada/nix-alien/tarball/master"
) { };
in [
nix-alien.nix-alien
];
};
};
} }