added zen browser

This commit is contained in:
willifan 2024-09-29 10:55:46 +02:00
parent 31aa6484b7
commit cc722d6ad1
3 changed files with 34 additions and 3 deletions

23
flake.lock generated
View file

@ -535,7 +535,8 @@
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"nixvim": "nixvim", "nixvim": "nixvim",
"stylix": "stylix" "stylix": "stylix",
"zen": "zen"
} }
}, },
"stylix": { "stylix": {
@ -618,6 +619,26 @@
"repo": "treefmt-nix", "repo": "treefmt-nix",
"type": "github" "type": "github"
} }
},
"zen": {
"inputs": {
"nixpkgs": [
"nixpkgs-unstable"
]
},
"locked": {
"lastModified": 1727287465,
"narHash": "sha256-XQAf5M593WmxgaXagtkci/H9DA3jSVx1TJk6F3X5VQo=",
"owner": "MarceColl",
"repo": "zen-browser-flake",
"rev": "96f1b5d80bf7360cb77c9b521f388324f18383a0",
"type": "github"
},
"original": {
"owner": "MarceColl",
"repo": "zen-browser-flake",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -27,6 +27,11 @@
inputs.nixpkgs.follows = "nixpkgs-unstable"; inputs.nixpkgs.follows = "nixpkgs-unstable";
}; };
zen = {
url = "github:MarceColl/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
# # Secrets management. See ./docs/secretsmgmt.md # # Secrets management. See ./docs/secretsmgmt.md
# sops-nix = { # sops-nix = {
# url = "github:mic92/sops-nix"; # url = "github:mic92/sops-nix";
@ -54,6 +59,7 @@
type = "desktop"; type = "desktop";
inherit pkgs; inherit pkgs;
inherit pkgs-unstable; inherit pkgs-unstable;
inherit attrs;
inherit system; inherit system;
}; };

View file

@ -1,4 +1,4 @@
{ pkgs, pkgs-unstable, ... }: { pkgs, pkgs-unstable, attrs, system, ... }:
{ {
environment.systemPackages = environment.systemPackages =
@ -31,6 +31,10 @@
prusa-slicer prusa-slicer
]); ])
++
[
attrs.zen.packages.${system}.specific
];
} }