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

@ -26,7 +26,6 @@
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
scripts = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:sadan4/scripts";
};
chrome-pak = {
@ -137,10 +136,10 @@
)
];
};
nix-desktop-evo4b5 = nixpkgs.lib.nixosSystem rec {
nix-desktop-evo4b5 = nixpkgs-unstable.lib.nixosSystem rec {
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
stable = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
@ -153,12 +152,12 @@
{ pkgs, ... }:
{
_module.args = {
stable = pkgs;
unstable = pkgs;
};
}
)
./boxes/desktop/configuration.nix
inputs.home-manager.nixosModules.default
inputs.home-manager-unstable.nixosModules.default
inputs.nix-index-database.nixosModules.nix-index
{ programs.nix-index-database.comma.enable = true; }
];