Add emanote

This commit is contained in:
Fabian Hauser 2024-07-22 20:38:57 +02:00
parent c9a8b5391a
commit 816f8ae9d3
4 changed files with 603 additions and 31 deletions

View file

@ -1,4 +1,14 @@
{
nixConfig = {
extra-substituters = "https://cache.garnix.io";
extra-trusted-public-keys = "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=";
};
inputs = {
nixpkgs.follows = "emanote/nixpkgs";
flake-parts.follows = "emanote/flake-parts";
};
inputs = {
# Upstream deps
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
@ -15,6 +25,14 @@
url = "git+file:///etc/nixos/fcc-unlock";
inputs.nixos-stable.follows = "nixpkgs-stable";
};
emanote = {
url = "github:srid/emanote";
inputs = {
emanote-template.follows = "";
nixpkgs.follows = "nixpkgs-unstable";
};
};
};
outputs =
@ -26,6 +44,7 @@
nixos-hardware,
fcc-unlock,
catppuccin,
emanote,
...
}@inputs:
let
@ -58,6 +77,7 @@
users.fhauser.imports = [
./home/fhauser/default.nix
catppuccin.homeManagerModules.catppuccin
emanote.homeManagerModule
];
};
};