mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2026-09-12 23:37:28 +02:00
typed is now in rust!
This commit is contained in:
parent
822c6b3bdf
commit
393a0a3ea5
7 changed files with 555 additions and 94 deletions
10
flake.nix
10
flake.nix
|
|
@ -6,9 +6,10 @@
|
|||
nixpkgs-stable.url = "nixpkgs/nixos-25.11";
|
||||
nixpkgs-unstable-small.url = "nixpkgs/nixos-unstable-small";
|
||||
stylix.url = "github:nix-community/stylix";
|
||||
typst-within.url = "github:schrottkatze/typst";
|
||||
crane.url = "github:ipetkov/crane";
|
||||
nixcord.url = "github:kaylorben/nixcord";
|
||||
typst-lsp.url = "git+https://codeberg.org/schrottkatze/typst-lsp.git";
|
||||
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
@ -25,12 +26,12 @@
|
|||
nixpkgs,
|
||||
nixpkgs-stable,
|
||||
nixpkgs-unstable-small,
|
||||
typst-within,
|
||||
home-manager,
|
||||
nixos-hardware,
|
||||
stylix,
|
||||
fenix,
|
||||
crane,
|
||||
typst-lsp,
|
||||
...
|
||||
}@inputs:
|
||||
let
|
||||
|
|
@ -49,6 +50,7 @@
|
|||
pname = "s10e-bs";
|
||||
version = "0.0.1";
|
||||
src = crane-lib.cleanCargoSource (crane-lib.path ./.);
|
||||
buildInputs = [ pkgs.inotify-tools ];
|
||||
};
|
||||
};
|
||||
in
|
||||
|
|
@ -81,7 +83,7 @@
|
|||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = {
|
||||
inherit pkgs-unstable-small pkgs-stable typst-within;
|
||||
inherit inputs pkgs-unstable-small pkgs-stable;
|
||||
};
|
||||
home-manager.sharedModules = [
|
||||
inputs.nixcord.homeModules.nixcord
|
||||
|
|
@ -117,7 +119,7 @@
|
|||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = {
|
||||
inherit pkgs-unstable-small pkgs-stable typst-within;
|
||||
inherit inputs pkgs-unstable-small pkgs-stable;
|
||||
};
|
||||
home-manager.sharedModules = [
|
||||
inputs.nixcord.homeModules.nixcord
|
||||
|
|
|
|||
Loading…
Reference in a new issue