This commit is contained in:
biscuit
2025-06-18 11:37:23 -05:00
parent 54f2f1e8f9
commit 0a1acae08a
5 changed files with 60 additions and 10 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
};
terminal = {
termFont = "Monolisa"; # e.g., JetBrainsMono Nerd Font
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font
termSize = "18";
termShell = "fish";
Generated
+46 -9
View File
@@ -228,7 +228,7 @@
},
"flake-utils_2": {
"inputs": {
"systems": "systems_3"
"systems": "systems_4"
},
"locked": {
"lastModified": 1731533236,
@@ -246,7 +246,7 @@
},
"flake-utils_3": {
"inputs": {
"systems": "systems_4"
"systems": "systems_5"
},
"locked": {
"lastModified": 1731533236,
@@ -264,7 +264,7 @@
},
"flake-utils_4": {
"inputs": {
"systems": "systems_6"
"systems": "systems_7"
},
"locked": {
"lastModified": 1731533236,
@@ -735,6 +735,27 @@
"url": "https://git.sakamoto.dev/kenji/nix-kitty-catppuccin.git"
}
},
"matugen": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"systems": "systems_3"
},
"locked": {
"lastModified": 1745334376,
"narHash": "sha256-GZAesQW51EwCEB9w5caxgi87LiAMhVfP6GqZmet9VZc=",
"owner": "InioX",
"repo": "Matugen",
"rev": "4619cca93513470dc2a1833d9a138297cbccaf2e",
"type": "github"
},
"original": {
"owner": "InioX",
"repo": "Matugen",
"type": "github"
}
},
"nix-darwin": {
"inputs": {
"nixpkgs": [
@@ -873,7 +894,7 @@
"nixpkgs"
],
"nuschtosSearch": "nuschtosSearch_2",
"systems": "systems_5"
"systems": "systems_6"
},
"locked": {
"lastModified": 1748942960,
@@ -966,6 +987,7 @@
"home-manager": "home-manager",
"hyprland": "hyprland",
"kitty-catppuccin": "kitty-catppuccin",
"matugen": "matugen",
"nix-neovim": "nix-neovim",
"nixpkgs": "nixpkgs_3",
"nixvim": "nixvim_2",
@@ -1022,16 +1044,16 @@
},
"systems_3": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"lastModified": 1689347949,
"narHash": "sha256-12tWmuL2zgBgZkdoB6qXZsgJEH9LR3oUgpaQq2RbI80=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"repo": "default-linux",
"rev": "31732fcf5e8fea42e59c2488ad31a0e651500f68",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"repo": "default-linux",
"type": "github"
}
},
@@ -1080,6 +1102,21 @@
"type": "github"
}
},
"systems_7": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"treefmt-nix": {
"inputs": {
"nixpkgs": [
+3
View File
@@ -25,6 +25,9 @@
kitty-catppuccin.url = "git+https://git.sakamoto.dev/kenji/nix-kitty-catppuccin.git";
kitty-catppuccin.inputs.nixpkgs.follows = "nixpkgs";
matugen.url = "github:/InioX/Matugen";
matugen.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {
+1
View File
@@ -1,5 +1,6 @@
{...}: {
imports = [
../../pkgs/btop/default.nix
../../pkgs/matugen/default.nix
];
}
+9
View File
@@ -0,0 +1,9 @@
{
pkgs,
inputs,
...
}: {
imports = [
inputs.matugen.nixosModules.default
];
}