framework: add zen-browser flake

also add git recommit alias
This commit is contained in:
tristan 2025-05-20 12:23:19 +01:00
parent cf2aaf7578
commit acf41f34a5
5 changed files with 48 additions and 3 deletions

View file

@ -17,6 +17,7 @@
sdiff = "diff --staged";
fpush = "push --force-with-lease";
t = "tag --annotate";
recommit = ''commit -m "$(cat "$(git rev-parse --git-dir)/COMMIT_EDITMSG)")"'';
bclone = "!sh ${pkgs.writeShellScriptBin "bare-clone" ''
url=$1
basename=''${url##*/}

View file

@ -1,4 +1,4 @@
{pkgs, ...}: {
{pkgs, inputs, ...}: {
imports = [
./mpv.nix
./vscode.nix
@ -59,4 +59,10 @@
enable = true;
package = pkgs.brave;
};
programs.firefox = {
enable = true;
package = inputs.zen-browser.packages.x86_64-linux.default;
};
}