feat(loona): catppuccin all the things
This commit is contained in:
parent
b53f5340e2
commit
6778b6d08a
3 changed files with 12 additions and 1 deletions
|
@ -13,6 +13,8 @@
|
|||
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
themePackages = [(pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; })];
|
||||
theme = "catppuccin-mocha";
|
||||
};
|
||||
boot.initrd.systemd.enable = true;
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
zfsSupport = true;
|
||||
efiSupport = true;
|
||||
efiInstallAsRemovable = true;
|
||||
theme = "${pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; }}/grub";
|
||||
mirroredBoots = [
|
||||
{ devices = [ "nodev"]; path = "/boot"; }
|
||||
];
|
||||
|
|
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue