pinwheel: Add chromium module

This commit is contained in:
Alexander Heldt
2024-08-18 14:50:16 +02:00
parent b748304faf
commit e0d850f31d
2 changed files with 8 additions and 1 deletions

View File

@@ -22,12 +22,13 @@
pkgs.htop
pkgs.onlyoffice-bin
pkgs.wdisplays
pkgs.ungoogled-chromium
pkgs.postman
];
home.stateVersion = "23.05";
};
};
environment.sessionVariables.NIXOS_OZONE_WL = "1";
};
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home-manager.users.alex= {
home.packages = [ pkgs.ungoogled-chromium ];
};
}