Skip to content

Commit

Permalink
Save for now
Browse files Browse the repository at this point in the history
  • Loading branch information
yousiki committed Mar 18, 2024
1 parent b3132fa commit 8f94b89
Show file tree
Hide file tree
Showing 20 changed files with 1,421 additions and 4 deletions.
183 changes: 183 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 23 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,23 @@
self,
flake-parts,
haumea,
nixpkgs,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = import (inputs.default-systems);

imports = [
./parts/formatter.nix
];
# Import files starting with "flakeModule" from the src directory.
imports = with nixpkgs.lib // builtins; (
collect
(p: (isPath p) && (hasPrefix "flakeModule" (baseNameOf p)))
(
haumea.lib.load {
src = ./src;
loader = haumea.lib.loaders.path;
}
)
);
};

inputs = {
Expand All @@ -33,6 +42,17 @@

treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";

nixos-hardware.url = "github:NixOS/nixos-hardware/master";

nixos-vscode-server.url = "github:nix-community/nixos-vscode-server";
nixos-vscode-server.inputs.nixpkgs.follows = "nixpkgs";

fenix.url = "github:nix-community/fenix";
fenix.inputs.nixpkgs.follows = "nixpkgs";

nvfetcher.url = "github:berberman/nvfetcher";
nvfetcher.inputs.nixpkgs.follows = "nixpkgs";
};

nixConfig = rec {
Expand Down
31 changes: 31 additions & 0 deletions nvfetcher.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[lporg]
src.github = "blacktop/lporg"
fetch.github = "blacktop/lporg"

[clash-meta]
src.github = "MetaCubeX/mihomo"
fetch.github = "MetaCubeX/mihomo"

[rime-ice]
src.git = "https://github.com/iDvel/rime-ice"
fetch.github = "iDvel/rime-ice"

[catppuccin-bat]
src.git = "https://github.com/catppuccin/bat"
fetch.github = "catppuccin/bat"

[catppuccin-bottom]
src.git = "https://github.com/catppuccin/bottom"
fetch.github = "catppuccin/bottom"

[catppuccin-btop]
src.git = "https://github.com/catppuccin/btop"
fetch.github = "catppuccin/btop"

[catppuccin-gitui]
src.git = "https://github.com/catppuccin/gitui"
fetch.github = "catppuccin/gitui"

[catppuccin-starship]
src.git = "https://github.com/catppuccin/starship"
fetch.github = "catppuccin/starship"
Loading

0 comments on commit 8f94b89

Please sign in to comment.