Compare commits

..

2 commits

Author SHA1 Message Date
021ff463a8
tsuki: init matugen
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
2023-09-29 19:54:40 -04:00
ca74f10b80
flake.nix: init matugen 2023-09-29 19:54:11 -04:00
3 changed files with 27 additions and 0 deletions

View file

@ -309,6 +309,26 @@
"type": "github"
}
},
"matugen": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1695891200,
"narHash": "sha256-E9GbsKXRWRi47oDbO4Yj0Ydkyav923itbT15to+ExkY=",
"owner": "InioX",
"repo": "Matugen",
"rev": "10a8a9069bd2afdb00ba3c6445e01292e25bc890",
"type": "github"
},
"original": {
"owner": "InioX",
"repo": "Matugen",
"type": "github"
}
},
"naersk": {
"inputs": {
"nixpkgs": "nixpkgs"
@ -471,6 +491,7 @@
"home-manager": "home-manager",
"hyprland": "hyprland",
"ironbar": "ironbar",
"matugen": "matugen",
"nh": "nh",
"nix-index-database": "nix-index-database",
"nixpkgs": "nixpkgs_2",

View file

@ -37,6 +37,10 @@
url = "github:viperML/nh";
inputs.nixpkgs.follows = "nixpkgs";
};
matugen = {
url = "github:/InioX/Matugen";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {nixpkgs, ...} @ inputs: let
system = "x86_64-linux";

View file

@ -1,6 +1,7 @@
{
config,
pkgs,
inputs,
...
}: {
imports = [
@ -95,5 +96,6 @@
jdk17
attic-client
comma
inputs.matugen.packages.x86_64-linux.default
];
}