This commit is contained in:
sadan 2024-11-26 18:04:08 -05:00
parent e927a537f9
commit 154444180c
No known key found for this signature in database
2 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{pkgs, ...}: { {pkgs, unstable, ...}: {
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
prisma unstable.prisma
prisma-engines prisma-engines
]; ];
sessionVariables = { sessionVariables = {

View file

@ -81,6 +81,8 @@
nix-desktop-evo4b5 = nixpkgs.lib.nixosSystem { nix-desktop-evo4b5 = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
unstable = nixpkgs;
stable = nix-stable;
}; };
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
@ -99,6 +101,7 @@
stylix = inputs.stylix-stable; stylix = inputs.stylix-stable;
}; };
unstable = nixpkgs; unstable = nixpkgs;
stable = nix-stable;
}; };
modules = [ modules = [
./boxes/wsl/configuration.nix ./boxes/wsl/configuration.nix