summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Ras <jaspert.ras@gmail.com>2024-11-14 09:02:09 +0100
committerJasper Ras <jaspert.ras@gmail.com>2024-11-14 09:02:09 +0100
commitec4eca0671798fe0828ade36900428ce45479200 (patch)
treed3b95fd10febfbd6d4e2bca29670676912cbcdf7
parent8ce6d5815e90c879b010b3e02009de01f9baf37b (diff)
blaeghe
-rw-r--r--config/shared.nix1
-rw-r--r--flake.lock37
-rw-r--r--flake.nix4
3 files changed, 40 insertions, 2 deletions
diff --git a/config/shared.nix b/config/shared.nix
index b006572..e7df6f3 100644
--- a/config/shared.nix
+++ b/config/shared.nix
@@ -9,6 +9,7 @@
alacritty
firefox
git
+ git-crypt
];
nixpkgs.config.allowUnfree = true;
diff --git a/flake.lock b/flake.lock
index b1a11bb..1030cc5 100644
--- a/flake.lock
+++ b/flake.lock
@@ -389,6 +389,22 @@
"type": "github"
}
},
+ "nixpkgs_4": {
+ "locked": {
+ "lastModified": 1727348695,
+ "narHash": "sha256-J+PeFKSDV+pHL7ukkfpVzCOO7mBSrrpJ3svwBFABbhI=",
+ "owner": "nixos",
+ "repo": "nixpkgs",
+ "rev": "1925c603f17fc89f4c8f6bf6f631a802ad85d784",
+ "type": "github"
+ },
+ "original": {
+ "owner": "nixos",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
"pre-commit-hooks": {
"inputs": {
"flake-compat": "flake-compat",
@@ -419,7 +435,8 @@
"home-manager": "home-manager",
"hyprland": "hyprland",
"nixpkgs": "nixpkgs_3",
- "utils": "utils"
+ "utils": "utils",
+ "zen-browser": "zen-browser"
}
},
"rust-overlay": {
@@ -546,6 +563,24 @@
"repo": "xdg-desktop-portal-hyprland",
"type": "github"
}
+ },
+ "zen-browser": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_4"
+ },
+ "locked": {
+ "lastModified": 1727721329,
+ "narHash": "sha256-QYlWZwUSwrM7BuO+dXclZIwoPvBIuJr6GpFKv9XKFPI=",
+ "owner": "MarceColl",
+ "repo": "zen-browser-flake",
+ "rev": "e6ab73f405e9a2896cce5956c549a9cc359e5fcc",
+ "type": "github"
+ },
+ "original": {
+ "owner": "MarceColl",
+ "repo": "zen-browser-flake",
+ "type": "github"
+ }
}
},
"root": "root",
diff --git a/flake.nix b/flake.nix
index 90f13dc..61d350b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,9 +8,11 @@
helix.url = "github:helix-editor/helix/master";
hyprland.url = "github:hyprwm/Hyprland";
utils.url = "github:gytis-ivaskevicius/flake-utils-plus";
+
+ zen-browser.url = "github:MarceColl/zen-browser-flake";
};
- outputs = { self, nixpkgs, utils, home-manager, helix, hyprland }@inputs:
+ outputs = { self, nixpkgs, utils, home-manager, helix, hyprland, ... }@inputs:
utils.lib.mkFlake {
inherit self inputs;