Rename programs folder to desktop

This commit is contained in:
panotaka
2023-11-25 00:23:05 -04:00
parent e60eafd043
commit ca45821041
9 changed files with 26 additions and 312 deletions

17
home/desktop/browsers.nix Normal file
View File

@@ -0,0 +1,17 @@
{ pkgs
, config
, ...
}: {
programs = {
chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
commandLineArgs = [ "--enable-features=TouchpadOverscrollHistoryNavigation" ];
};
firefox = {
enable = true;
profiles.panotaka = { };
};
};
}