Compare commits

..

No commits in common. "3c9a6ebd7d9bd63693043356310b03689061d9bf" and "b23934143fe64e77aceeb6038ee40157afdce05c" have entirely different histories.

3 changed files with 8 additions and 5 deletions

View file

@ -25,6 +25,7 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nixos-vscode-server";
sha256 = "${lock.nixos-vscode-server.sha256}";
};
};
@ -44,6 +45,7 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nixpkgs";
sha256 = "${lock.nixpkgs.sha256}";
};
};
@ -63,6 +65,7 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nixpkgs-unstable";
sha256 = "${lock.nixpkgs-unstable.sha256}";
};
};
@ -83,6 +86,7 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nix-bitcoin";
sha256 = "${lock.nix-bitcoin.sha256}";
};
};
@ -103,6 +107,7 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "cosmic-modules";
sha256 = "${lock.cosmic-modules.sha256}";
};
};

View file

@ -16,7 +16,7 @@
sha256 = "sha256-yU7iYlDSD8lOrm02igxIl3y+bXGZDDO0qcG0gO48Cto=";
};
cosmic-modules = {
revision = "9ee103c0e4c46ed36ed51c349d499581801d9d6e";
sha256 = "sha256-nFvPap4+GVkcWXMQhuscuZt1t/mnNOKoYZ/a66rr1Xg=";
revision = "9968c1383802da561c01cfef3d90a72522d0ed55";
sha256 = "sha256-L0PRHA3Bw9WWUDlbSJGKc8Y+3PVV+geESAEKxQb+tfg=";
};
}

View file

@ -52,9 +52,7 @@ let
in {
config = {
nix.package = wrappedNixExecutables false;
environment.systemPackages = [
pkgs.nix-output-monitor
] ++ lib.map (lib.hiPrio) [
environment.systemPackages = lib.map (lib.hiPrio) [
(wrappedNixExecutables true)
wrappedNixosExecutables
];