add chrome

This commit is contained in:
Mohamed Chrayed
2026-03-03 13:41:04 +01:00
parent d650462d5c
commit a6a99ee41e
2 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{ ... }: {
flake.nixosModules.chrome = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
chrome
];
};
}