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:
@ -5,7 +5,6 @@
|
|||||||
blueprint.url = "github:numtide/blueprint";
|
blueprint.url = "github:numtide/blueprint";
|
||||||
catppuccin.url = "github:catppuccin/nix";
|
catppuccin.url = "github:catppuccin/nix";
|
||||||
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
|
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
|
||||||
determinate.url = "github:DeterminateSystems/determinate";
|
|
||||||
disko.url = "github:nix-community/disko/latest";
|
disko.url = "github:nix-community/disko/latest";
|
||||||
home-manager.url = "github:nix-community/home-manager";
|
home-manager.url = "github:nix-community/home-manager";
|
||||||
hyprland.url = "github:hyprwm/Hyprland";
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
|
@ -1,13 +1,9 @@
|
|||||||
# TODO: better file name
|
# TODO: better file name
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
inputs,
|
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = with inputs; [
|
|
||||||
# determinate.nixosModules.default
|
|
||||||
];
|
|
||||||
nix = {
|
nix = {
|
||||||
package = pkgs.lix;
|
package = pkgs.lix;
|
||||||
channel.enable = false;
|
channel.enable = false;
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# TODO: better file name
|
# TODO: better file name
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
inputs,
|
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
@ -12,9 +11,6 @@
|
|||||||
inherit (config.sops) secrets;
|
inherit (config.sops) secrets;
|
||||||
inherit (inputs) mysecrets;
|
inherit (inputs) mysecrets;
|
||||||
in {
|
in {
|
||||||
imports = with inputs; [
|
|
||||||
# determinate.nixosModules.default
|
|
||||||
];
|
|
||||||
nix = {
|
nix = {
|
||||||
package = pkgs.lix;
|
package = pkgs.lix;
|
||||||
channel.enable = false;
|
channel.enable = false;
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
inputs,
|
inputs,
|
||||||
# pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
hostName =
|
hostName =
|
||||||
@ -12,11 +12,8 @@
|
|||||||
inherit (config.sops) secrets;
|
inherit (config.sops) secrets;
|
||||||
inherit (inputs) mysecrets;
|
inherit (inputs) mysecrets;
|
||||||
in {
|
in {
|
||||||
imports = with inputs; [
|
|
||||||
determinate.nixosModules.default
|
|
||||||
];
|
|
||||||
nix = {
|
nix = {
|
||||||
# package = pkgs.lix;
|
package = pkgs.lix;
|
||||||
channel.enable = false;
|
channel.enable = false;
|
||||||
daemonCPUSchedPolicy = "idle";
|
daemonCPUSchedPolicy = "idle";
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -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";
|
|
||||||
};
|
|
||||||
}
|
|
Reference in New Issue
Block a user