diff --git a/flake.nix b/flake.nix index 0cea039..17ea539 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/hosts/dunamis/nix.nix b/hosts/dunamis/nix.nix index 62f11ca..ec792b9 100644 --- a/hosts/dunamis/nix.nix +++ b/hosts/dunamis/nix.nix @@ -1,13 +1,9 @@ # TODO: better file name { config, - inputs, pkgs, ... }: { - imports = with inputs; [ - # determinate.nixosModules.default - ]; nix = { package = pkgs.lix; channel.enable = false; diff --git a/hosts/eldrid/nix.nix b/hosts/eldrid/nix.nix index 2d2ecc6..d2c2874 100644 --- a/hosts/eldrid/nix.nix +++ b/hosts/eldrid/nix.nix @@ -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; diff --git a/hosts/sarien/nix.nix b/hosts/sarien/nix.nix index c466938..f37b92e 100644 --- a/hosts/sarien/nix.nix +++ b/hosts/sarien/nix.nix @@ -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 = { diff --git a/packages/wl-tray-bridge/default.nix b/packages/wl-tray-bridge/default.nix deleted file mode 100644 index 8fae677..0000000 --- a/packages/wl-tray-bridge/default.nix +++ /dev/null @@ -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"; - }; -}