From 0a1acae08ae70799d2f1507a8d49c69551c63481 Mon Sep 17 00:00:00 2001 From: biscuit Date: Wed, 18 Jun 2025 11:37:23 -0500 Subject: [PATCH] matugen --- config.local.nix | 2 +- flake.lock | 55 +++++++++++++++++++++++++++++++++------- flake.nix | 3 +++ modules/desktop/misc.nix | 1 + pkgs/matugen/default.nix | 9 +++++++ 5 files changed, 60 insertions(+), 10 deletions(-) create mode 100644 pkgs/matugen/default.nix diff --git a/config.local.nix b/config.local.nix index 0ea3a17..548aa27 100644 --- a/config.local.nix +++ b/config.local.nix @@ -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"; diff --git a/flake.lock b/flake.lock index a9bebdc..7d9820d 100644 --- a/flake.lock +++ b/flake.lock @@ -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": [ diff --git a/flake.nix b/flake.nix index d65f096..79c2419 100644 --- a/flake.nix +++ b/flake.nix @@ -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 = { diff --git a/modules/desktop/misc.nix b/modules/desktop/misc.nix index db14211..f223e2a 100644 --- a/modules/desktop/misc.nix +++ b/modules/desktop/misc.nix @@ -1,5 +1,6 @@ {...}: { imports = [ ../../pkgs/btop/default.nix + ../../pkgs/matugen/default.nix ]; } diff --git a/pkgs/matugen/default.nix b/pkgs/matugen/default.nix new file mode 100644 index 0000000..59d7f3f --- /dev/null +++ b/pkgs/matugen/default.nix @@ -0,0 +1,9 @@ +{ + pkgs, + inputs, + ... +}: { + imports = [ + inputs.matugen.nixosModules.default + ]; +}