Create own flake for emacs

This commit is contained in:
Tobias Ostner 2025-04-21 17:53:35 +02:00
parent 75be932b45
commit 98c77fe32e
11 changed files with 174 additions and 129 deletions

14
flakes/emacs/flake.nix Normal file
View file

@ -0,0 +1,14 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager/";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs:
{
homeManagerModules = {
aarch64-darwin = import ./home.nix;
};
};
}