Compare commits

...

2 commits

Author SHA1 Message Date
ccd5e9a5de chromium: init 2025-05-31 20:49:09 +10:00
5d71a07cb9 SDDM: init 2025-05-31 20:13:47 +10:00
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
environment.systemPackages = [
pkgs.chromium # not enabled through programs.chromium.enable
];
programs.chromium = {
enable = true;
enablePlasmaBrowserIntegration = if (config.services.desktopManager.plasma6.enable == true) then true else false;
extensions = [
"ddkjiahejlhfcafbddmgiahcphecmpfh" # ublock origin lite
"aeblfdkhhhdcdjpifhhbdiojplfjncoa" # 1Password
"eimadpbcbfnmbkopoojfekhnkhdbieeh" # dark reader
"mnjggcdmjocbbbhaepdhchncahnbgone" # sponsorblock
];
};
}

View file

@ -0,0 +1,6 @@
{ config, ... }:
{
services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true;
}