feat(loona): catppuccin all the things

This commit is contained in:
Ashhhleyyy 2024-07-23 08:05:56 +01:00
parent b53f5340e2
commit 6778b6d08a
Signed by: ash
GPG key ID: 83B789081A0878FB
3 changed files with 12 additions and 1 deletions

View file

@ -13,6 +13,8 @@
boot.plymouth = {
enable = true;
themePackages = [(pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; })];
theme = "catppuccin-mocha";
};
boot.initrd.systemd.enable = true;

View file

@ -4,6 +4,7 @@
zfsSupport = true;
efiSupport = true;
efiInstallAsRemovable = true;
theme = "${pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; }}/grub";
mirroredBoots = [
{ devices = [ "nodev"]; path = "/boot"; }
];

View file

@ -36,7 +36,10 @@
enable = true;
xkb.layout = "gb";
};
displayManager.sddm.enable = true;
displayManager.sddm = {
enable = true;
theme = "catppuccin-mocha";
};
desktopManager.plasma6.enable = true;
};
@ -67,6 +70,11 @@
};
environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; };
environment.systemPackages = with pkgs; [
(catppuccin-sddm.override {
flavor = "mocha";
})
];
boot.extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];