Emacs and inputs updated

- Added org-roam in Emacs
- Flake inputs updated
- Other little modifications
This commit is contained in:
Andrea Ciceri 2021-10-14 01:26:52 +02:00
parent 3f39ace857
commit 317e50ef9f
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
13 changed files with 167 additions and 119 deletions

View file

@ -8,27 +8,25 @@
package = pkgs.whitesur-gtk-theme;
};
iconTheme = {
#name = "Adwaita";
#package = pkgs.gnome.adwaita-icon-theme;
name = "WhiteSur";
package = pkgs.whitesur-icon-theme;
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
};
};
home.file.".icons/default" = {
recursive = true;
source = let
drv = pkgs.stdenv.mkDerivation {
name = "apple-cursor";
src = pkgs.fetchurl {
url = "https://github.com/ful1e5/apple_cursor/releases/download/v1.2.0/macOSBigSur.tar.gz";
sha256 = "sha256-8QNd8EEf11MIBVUbgZy6U1ZnDIWj92EGQmKLR8Edqfw=";
};
installPhase = ''
mkdir -p $out
mv * $out/
'';
};
in
"${drv}/";
};
# home.file.".icons/default" = {
# recursive = true;
# source = let
# drv = pkgs.stdenv.mkDerivation {
# name = "apple-cursor";
# src = pkgs.fetchurl {
# url = "https://github.com/ful1e5/apple_cursor/releases/download/v1.2.0/macOSBigSur.tar.gz";
# sha256 = "sha256-8QNd8EEf11MIBVUbgZy6U1ZnDIWj92EGQmKLR8Edqfw=";
# };
# installPhase = ''
# mkdir -p $out
# mv * $out/
# '';
# };
# in
# "${drv}/";
# };
}