feat: grub and greetd setups

grub: changed theme to distro-grub-themes

kernel: upgraded to linux zen kernel

greetd: configured tuigreet with greetd to replace sddm
This commit is contained in:
Zhongheng Liu 2024-08-20 11:18:51 +08:00
commit 3084dbcb7f
No known key found for this signature in database
5 changed files with 124 additions and 39 deletions

14
nixos/sddm-theme.nix Normal file
View file

@ -0,0 +1,14 @@
{pkgs, ...}:
pkgs.stdenv.mkDerivation {
name = "sddm-theme";
src = pkgs.fetchFromGitHub {
owner = "stepanzubkov";
repo = "where-is-my-sddm-theme";
rev = "4e55b6a549b559e1d7d21b84e301e427d5b8d005";
sha256 = "126fdmgw6d8iw0rx8jcwvjzri3jd7x6dbp5y8h11ri2csya6s5wp";
};
installPhase = ''
mkdir -p $out
cp -R ./where_is_my_sddm_theme_qt5/* $out/
'';
}