Skip to content

Commit f64d1c1

Browse files
nixos: add zen browser
1 parent 04d0885 commit f64d1c1

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

flake.lock

Lines changed: 22 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
darwin.inputs.nixpkgs.follows = "nixpkgs";
1212
homini.url = "github:minizilla/homini";
1313
homini.inputs.nixpkgs.follows = "nixpkgs";
14+
zen-browser.url = "github:0xc000022070/zen-browser-flake";
15+
zen-browser.inputs.nixpkgs.follows = "nixpkgs";
1416
};
1517

1618
outputs =

lib/mknixos.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
dt,
44
home-manager,
55
homini,
6+
zen-browser,
67
...
78
}:
89
nixosConfigurations:
@@ -46,6 +47,9 @@ builtins.mapAttrs (
4647
dt.flake = dt;
4748
};
4849
nix.nixPath = [ "nixpkgs=flake:nixpkgs" ];
50+
environment.systemPackages = [
51+
zen-browser.packages."${settings.system}".default
52+
];
4953
}
5054
)
5155
../machines/${settings.machine}

0 commit comments

Comments
 (0)