cleanup zsh config - change to unmutuble users

This commit is contained in:
2024-03-01 20:39:29 +01:00
parent 0c433e3bd0
commit ca59bf727c
3 changed files with 59 additions and 44 deletions

View File

@@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitHub
, sddm
, qtgraphicaleffects
, qtquickcontrols2
, qtsvg
}:
stdenv.mkDerivation rec {
pname = "catppuccin-sddm";
version = "unstable-2024-02-05";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "sddm";
rev = "f3db13cbe8e99a4ee7379a4e766bc8a4c2c6c3dd";
hash = "sha256-0zoJOTFjQq3gm5i3xCRbyk781kB7BqcWWNrrIkWf2Xk=";
};
buildInputs = [
sddm
qtgraphicaleffects
qtquickcontrols2
qtsvg
];
dontWrapQtApps = true;
postInstall = ''
mkdir -p "$out/share/sddm/themes/"
mv src/* "$out/share/sddm/themes/."
'';
meta = {
description = "Soothing pastel theme for SDDM";
homepage = "https://github.com/catppuccin/sddm";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ einfischy ];
platforms = lib.platforms.linux;
};
}

View File

@@ -6,6 +6,6 @@
};
xsession.initExtra = ''
${pkgs.feh}/bin/feh --bg-fill --no-fehbg "background_temp.jpeg"
${pkgs.feh}/bin/feh --bg-fill --no-fehbg "/etc/nixos/home/programs/background_temp.jpeg"
'';
}