1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-05 21:15:38 -05:00

add dms-cli as flake dependency

This commit is contained in:
bbedward
2025-09-05 18:51:26 -04:00
parent 8d674a4fdc
commit 0b76171151
2 changed files with 25 additions and 1 deletions

21
flake.lock generated
View File

@@ -1,5 +1,25 @@
{
"nodes": {
"dms-cli": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1757112511,
"narHash": "sha256-WE1cUTr53VJG06YAkpYG+HvdXp4fFyqZwXqsABOXYFY=",
"owner": "AvengeMedia",
"repo": "danklinux",
"rev": "563c7fdcba0e8c6ac0f4b3292308e8bcbb553da6",
"type": "github"
},
"original": {
"owner": "AvengeMedia",
"repo": "danklinux",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1754214453,
@@ -38,6 +58,7 @@
},
"root": {
"inputs": {
"dms-cli": "dms-cli",
"nixpkgs": "nixpkgs",
"quickshell": "quickshell"
}

View File

@@ -5,9 +5,11 @@
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
quickshell.url = "git+https://git.outfoxxed.me/quickshell/quickshell";
quickshell.inputs.nixpkgs.follows = "nixpkgs";
dms-cli.url = "github:AvengeMedia/danklinux";
dms-cli.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, quickshell, ... }:
outputs = { self, nixpkgs, quickshell, dms-cli, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
@@ -171,6 +173,7 @@
libsForQt5.qt5ct
kdePackages.qt6ct
matugen
dms-cli.packages.${system}.default
];
};
};