Add my own SDDM theme!
This commit is contained in:
parent
3db9423dc4
commit
45871c09e8
6 changed files with 29 additions and 0 deletions
7
overlays/default.nix
Normal file
7
overlays/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
self: super:
|
||||
|
||||
rec {
|
||||
my = super.recurseIntoAttrs {
|
||||
sddm-nx = super.callPackage ./nx-sddm.nix {};
|
||||
};
|
||||
}
|
14
overlays/nx-sddm.nix
Normal file
14
overlays/nx-sddm.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ stdenv}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "nx-sddm";
|
||||
src = fetchGit {
|
||||
url = https://githee.netsoj.nl/chris-config/sddm-nx.git;
|
||||
rev ="636e786f88d2e9838c8096465d8b4e9b3b0914aa";
|
||||
#sha256 = "1nwfisz13y2pfkrnxlkrqp1j546m1na9bkdrd0khm5ilb71d7win";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/sddm/themes/nx-sddm
|
||||
cp -r . $out/share/sddm/themes/nx-sddm
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue