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 = {
|
boot.plymouth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
themePackages = [(pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; })];
|
||||||
|
theme = "catppuccin-mocha";
|
||||||
};
|
};
|
||||||
boot.initrd.systemd.enable = true;
|
boot.initrd.systemd.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
zfsSupport = true;
|
zfsSupport = true;
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
efiInstallAsRemovable = true;
|
efiInstallAsRemovable = true;
|
||||||
|
theme = "${pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; }}/grub";
|
||||||
mirroredBoots = [
|
mirroredBoots = [
|
||||||
{ devices = [ "nodev"]; path = "/boot"; }
|
{ devices = [ "nodev"]; path = "/boot"; }
|
||||||
];
|
];
|
||||||
|
|
|
@ -36,7 +36,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
xkb.layout = "gb";
|
xkb.layout = "gb";
|
||||||
};
|
};
|
||||||
displayManager.sddm.enable = true;
|
displayManager.sddm = {
|
||||||
|
enable = true;
|
||||||
|
theme = "catppuccin-mocha";
|
||||||
|
};
|
||||||
desktopManager.plasma6.enable = true;
|
desktopManager.plasma6.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -67,6 +70,11 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; };
|
environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; };
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
(catppuccin-sddm.override {
|
||||||
|
flavor = "mocha";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
boot.extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];
|
boot.extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue