- Added theming to Btop - Added theming to Nvim and removed bufferline plugin - Added mode to theme.nix to change from light theme to dark theme - Replaced Starship theme with Catppuccin starship theme - Added QT platformtheme ENV - Moved wallpapers into wallpaper dir - Replaced image of desktop1 with more up to date one
24 lines
493 B
Nix
24 lines
493 B
Nix
{ pkgs, ... }:
|
|
let
|
|
theme = import ../theme.nix;
|
|
flavor = theme.flavor;
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
(catppuccin-sddm.override {
|
|
flavor = flavor;
|
|
font = theme.nerdFont;
|
|
fontSize = "9";
|
|
background = "${../wallpapers/catppuccin_high.png}";
|
|
loginBackground = true;
|
|
})
|
|
];
|
|
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
theme = "catppuccin-${flavor}";
|
|
wayland.enable = true;
|
|
package = pkgs.kdePackages.sddm;
|
|
};
|
|
}
|