- Added Gstreamer packages for audio data - Replaced catppuccin wallpaper on lockscreen with one where the logo is higher - Replaced dolphin with nautilus file manager - Moved Gnome related configs to /gnome - Added Gnome appindicator and extension manager - Added loupe and gimp - Added mime types for image files
22 lines
483 B
Nix
22 lines
483 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
(catppuccin-sddm.override {
|
|
flavor = "mocha";
|
|
font = "Noto Sans";
|
|
fontSize = "9";
|
|
background = "${./catppuccin_high.png}";
|
|
loginBackground = true;
|
|
})
|
|
];
|
|
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
theme = "catppuccin-mocha";
|
|
autoNumlock = true; # Enable numlock at login # TODO doesn't work
|
|
wayland.enable = true;
|
|
package = pkgs.kdePackages.sddm;
|
|
};
|
|
}
|