Martin Berg Alstad fe1186f960
🖼 Replaced Dolphin with Nauvis, mime types, image-viewer
- 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
2024-12-31 20:28:24 +01:00

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;
};
}