update desktop to unstable

This commit is contained in:
sadan 2025-03-12 22:49:47 -04:00
parent 0127b58b58
commit dfc97d17ee
No known key found for this signature in database
9 changed files with 89 additions and 72 deletions

View file

@ -1,4 +1,7 @@
{ inputs, ... }:
{ inputs, pkgs, ... }:
let
system = pkgs.system;
in
{
nixpkgs = {
overlays = [
@ -10,7 +13,7 @@
frog = pkgs.callPackage ./frog { };
chrome-pak-customizer = inputs.chrome-pak.flakePackage pkgs;
ceserver = inputs.ceserver.flakePackage pkgs;
scripts = inputs.scripts.flakePackage pkgs;
scripts = inputs.scripts.flakePackage system;
};
})
];