add basic (and working) sway config

This commit is contained in:
Alexander Navarro 2023-07-09 19:10:49 -04:00
parent c4219c5b62
commit 0ed78d898e
4 changed files with 112 additions and 56 deletions

18
nixos/theme.nix Normal file
View file

@ -0,0 +1,18 @@
{ stdenv, fetchFromGitHub }:
{
sddm-catppucin-theme = stdenv.mkDerivation rec {
pname = "sddm-catppucin-theme";
version = "1";
dontBuild = true;
installPhase = ''
mkdir -p $out/share/sddm/themes
cp -aR $src/src/* $out/share/sddm/themes/
'';
src = fetchFromGitHub {
owner = "catppuccin";
repo = "sddm";
rev = "bde6932e1ae0f8fdda76eff5c81ea8d3b7d653c0";
sha256 = "1lg10dyxgz080qfcp6k3zk6374jlj067s6p5fgx5r135ivy8mrki";
};
};
}