chore(ags): move to mono-repo for astal-tray

This commit is contained in:
matt1432 2024-09-13 14:05:19 -04:00
parent e60d59c77c
commit defc94db8a
4 changed files with 17 additions and 17 deletions

18
flake.lock generated
View file

@ -72,23 +72,23 @@
"type": "github" "type": "github"
} }
}, },
"astal-tray": { "astal": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
"nixpkgs" "nixpkgs"
] ]
}, },
"locked": { "locked": {
"lastModified": 1724413714, "lastModified": 1726235189,
"narHash": "sha256-P+iSzO/6Iwc13jq+WbtVkbYzi0x1Wm1SW9civBmpwCo=", "narHash": "sha256-hXTLoJGKp7iMxg2B8GaUyO2JnpQ3Nevy0II6vY6kE74=",
"owner": "astal-sh", "owner": "Aylur",
"repo": "tray", "repo": "astal",
"rev": "d26245409c124a769f4c1f4f25399735f8c80758", "rev": "e9f9de6ba557de6a553f03de813af0fdbdbec047",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "astal-sh", "owner": "Aylur",
"repo": "tray", "repo": "astal",
"type": "github" "type": "github"
} }
}, },
@ -1630,7 +1630,7 @@
"root": { "root": {
"inputs": { "inputs": {
"ags": "ags", "ags": "ags",
"astal-tray": "astal-tray", "astal": "astal",
"bat-theme-src": "bat-theme-src", "bat-theme-src": "bat-theme-src",
"bazarr-bulk": "bazarr-bulk", "bazarr-bulk": "bazarr-bulk",
"caddy-plugins": "caddy-plugins", "caddy-plugins": "caddy-plugins",

View file

@ -10,10 +10,10 @@
repo = "ags"; repo = "ags";
type = "github"; type = "github";
}; };
astal-tray = { astal = {
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
owner = "astal-sh"; owner = "Aylur";
repo = "tray"; repo = "astal";
type = "github"; type = "github";
}; };
bat-theme-src = { bat-theme-src = {

View file

@ -149,9 +149,9 @@ let
repo = "ags"; repo = "ags";
}; };
astal-tray = mkDep { astal = mkDep {
owner = "astal-sh"; owner = "Aylur";
repo = "tray"; repo = "astal";
}; };
gtk-session-lock = mkDep { gtk-session-lock = mkDep {

View file

@ -4,7 +4,7 @@ self: {
pkgs, pkgs,
... ...
}: let }: let
inherit (self.inputs) ags astal-tray gtk-session-lock ts-for-gir-src; inherit (self.inputs) ags astal gtk-session-lock ts-for-gir-src;
in { in {
config = let config = let
inherit (lib) boolToString mkIf toLower; inherit (lib) boolToString mkIf toLower;
@ -15,7 +15,7 @@ in {
flakeDir = config.environment.variables.FLAKE; flakeDir = config.environment.variables.FLAKE;
# Packages # Packages
astalTray = astal-tray.packages.${pkgs.system}.tray; astalTray = astal.packages.${pkgs.system}.tray;
gtkSessionLock = gtk-session-lock.packages.${pkgs.system}.default; gtkSessionLock = gtk-session-lock.packages.${pkgs.system}.default;
in in
mkIf cfgDesktop.ags.enable { mkIf cfgDesktop.ags.enable {