Compare commits

...

3 commits

Author SHA1 Message Date
3c9a6ebd7d lock: update 2025-05-03 14:28:08 +02:00
87fb77ef11 inputs: don't provide name for fetchTarball 2025-05-03 14:24:44 +02:00
be208e74fb nixos/nix: add nix-output-monitor 2025-05-03 14:21:14 +02:00
3 changed files with 5 additions and 8 deletions

View file

@ -25,7 +25,6 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nixos-vscode-server";
sha256 = "${lock.nixos-vscode-server.sha256}";
};
};
@ -45,7 +44,6 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nixpkgs";
sha256 = "${lock.nixpkgs.sha256}";
};
};
@ -65,7 +63,6 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nixpkgs-unstable";
sha256 = "${lock.nixpkgs-unstable.sha256}";
};
};
@ -86,7 +83,6 @@ self = {
};
outPath = builtins.fetchTarball {
inherit url;
name = "nix-bitcoin";
sha256 = "${lock.nix-bitcoin.sha256}";
};
};
@ -107,7 +103,6 @@ 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 = "9968c1383802da561c01cfef3d90a72522d0ed55";
sha256 = "sha256-L0PRHA3Bw9WWUDlbSJGKc8Y+3PVV+geESAEKxQb+tfg=";
revision = "9ee103c0e4c46ed36ed51c349d499581801d9d6e";
sha256 = "sha256-nFvPap4+GVkcWXMQhuscuZt1t/mnNOKoYZ/a66rr1Xg=";
};
}

View file

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