diff --git a/inputs.nix b/inputs.nix index b5f0b13..9cad31f 100644 --- a/inputs.nix +++ b/inputs.nix @@ -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}"; }; }; diff --git a/lock.nix b/lock.nix index dc0e246..f444a27 100644 --- a/lock.nix +++ b/lock.nix @@ -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="; }; } diff --git a/nix-os/nix.nix b/nix-os/nix.nix index 8d4c425..ec0ae1d 100644 --- a/nix-os/nix.nix +++ b/nix-os/nix.nix @@ -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 ];