flake.nix: remove determinate

hosts/dunamis/nix.nix: replace with lix
hosts/eldrid/nix.nix: replace with lix
hosts/sarien/nix.nix: replace with lix
packages/wl-tray-bridge/default.nix: remove

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-07 12:34:19 +03:00
parent 27fe6b6b8d
commit dd8be2c147
5 changed files with 2 additions and 59 deletions

View File

@ -5,7 +5,6 @@
blueprint.url = "github:numtide/blueprint";
catppuccin.url = "github:catppuccin/nix";
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
determinate.url = "github:DeterminateSystems/determinate";
disko.url = "github:nix-community/disko/latest";
home-manager.url = "github:nix-community/home-manager";
hyprland.url = "github:hyprwm/Hyprland";

View File

@ -1,13 +1,9 @@
# TODO: better file name
{
config,
inputs,
pkgs,
...
}: {
imports = with inputs; [
# determinate.nixosModules.default
];
nix = {
package = pkgs.lix;
channel.enable = false;

View File

@ -1,7 +1,6 @@
# TODO: better file name
{
config,
inputs,
pkgs,
...
}: let
@ -12,9 +11,6 @@
inherit (config.sops) secrets;
inherit (inputs) mysecrets;
in {
imports = with inputs; [
# determinate.nixosModules.default
];
nix = {
package = pkgs.lix;
channel.enable = false;

View File

@ -2,7 +2,7 @@
{
config,
inputs,
# pkgs,
pkgs,
...
}: let
hostName =
@ -12,11 +12,8 @@
inherit (config.sops) secrets;
inherit (inputs) mysecrets;
in {
imports = with inputs; [
determinate.nixosModules.default
];
nix = {
# package = pkgs.lix;
package = pkgs.lix;
channel.enable = false;
daemonCPUSchedPolicy = "idle";
settings = {

View File

@ -1,45 +0,0 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
cairo,
glib,
pango,
stdenv,
wayland,
}:
rustPlatform.buildRustPackage rec {
pname = "wl-tray-bridge";
version = "unstable-2024-10-24";
src = fetchFromGitHub {
owner = "mahkoh";
repo = "wl-tray-bridge";
rev = "5ea5bbddcf1dbb2ab4836b00b300803c928469c5";
hash = "sha256-ewoHopL9/hgErshUWZBZ4H6MKt7iQD7x+4MebNzDdXQ=";
};
cargoHash = "sha256-YuxLTC7/EiBqqzYrFQDwxJUS7D0M3RvlBrybBZya9/Q=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
cairo
glib
pango
] ++ lib.optionals stdenv.isLinux [
wayland
];
meta = {
description = "";
homepage = "https://github.com/mahkoh/wl-tray-bridge";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ];
mainProgram = "wl-tray-bridge";
};
}