god only knows
This commit is contained in:
parent
2f2060aade
commit
37a11e11ff
23 changed files with 230 additions and 49 deletions
0
home/homepkgs/bismuth.nix
Normal file → Executable file
0
home/homepkgs/bismuth.nix
Normal file → Executable file
0
home/homepkgs/culr.nix
Normal file → Executable file
0
home/homepkgs/culr.nix
Normal file → Executable file
0
home/homepkgs/git-credential-keepassxc.nix
Normal file → Executable file
0
home/homepkgs/git-credential-keepassxc.nix
Normal file → Executable file
28
home/homepkgs/slice.nix
Executable file
28
home/homepkgs/slice.nix
Executable file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sddm-slice";
|
||||
version = "1.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "EricKotato";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-IWwFsYqoqW3924+pf8L+acIt31aU/mhqakXbT9Q4Bqw=";
|
||||
};
|
||||
|
||||
deployPhase = "
|
||||
cp -r ./* /usr/share/sddm/themes/slice/
|
||||
";
|
||||
|
||||
meta = with lib; {
|
||||
description = "an sddm theme";
|
||||
homepage = "somewhere.else";
|
||||
license = licenses.mit;
|
||||
maintainers = [];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue