Compare commits

...

2 commits

Author SHA1 Message Date
954b390497
Add garuda linux beautyline 2024-11-22 01:45:15 -07:00
b4ddf7bf32
Remove unnecessary let binding 2024-11-22 00:53:46 -07:00
6 changed files with 42 additions and 3 deletions

View file

@ -12,5 +12,6 @@
./modules/gpg.nix ./modules/gpg.nix
./modules/shell ./modules/shell
./modules/vscode.nix ./modules/vscode.nix
./modules/desktop.nix
]; ];
} }

View file

@ -0,0 +1,14 @@
{ ... }:
{
xdg.desktopEntries = {
# Override vesktop for matching icon in beautyline (make it generic discord icon)
vesktop = {
categories = [ "Network" "InstantMessaging" "Chat" ];
exec = "vesktop %U";
genericName = "Internet Messenger";
icon = "discord"; # CHANGED
name = "Vesktop";
type = "Application";
};
};
}

View file

@ -1,6 +1,6 @@
{ pkgs, inputs, system, ... }: { pkgs, inputs, system, ... }:
{ {
home.packages = (with pkgs; let vscode-extensions = inputs.vscode-extensions.extensions."${system}"; in [ home.packages = (with pkgs; [
# Chat # Chat
element-desktop element-desktop
vesktop vesktop
@ -18,6 +18,7 @@
# KDE Themes # KDE Themes
vimix-cursors vimix-cursors
(pkgs.callPackage ../../packages/beautyline {})
# Programming # Programming
nixd # NixD LSP for .nix files nixd # NixD LSP for .nix files

View file

@ -11,8 +11,8 @@
theme = "Vimix-cursors"; theme = "Vimix-cursors";
size = 24; size = 24;
}; };
# Set icon theme TODO Package modern beautyline # Set icon theme
iconTheme = "breeze-dark"; iconTheme = "beautyline-garuda";
# Set wallpaper to Shell # Set wallpaper to Shell
wallpaper = "${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers/Shell/contents/images/5120x2880.jpg"; wallpaper = "${pkgs.kdePackages.plasma-workspace-wallpapers}/share/wallpapers/Shell/contents/images/5120x2880.jpg";
}; };

View file

@ -0,0 +1,22 @@
# TODO Make this not horrifyingly simple
{ stdenv, fetchgit, ... }:
stdenv.mkDerivation rec {
pname = "beautyline-garuda";
version = "04052024"; # AoE Time
src = fetchgit {
url = "https://gitlab.com/garuda-linux/themes-and-settings/artwork/beautyline";
rev = "e13e5fa8f5aaad8a35fcaeb8a69512d32270a9d0";
sha256 = "vl6ab7JSk66BeveyuNs7g7Pf252F4tMs/xXJcrd7AHU=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons/${pname}
cp -r * $out/share/icons/${pname}/
runHook postInstall
'';
}

1
result Symbolic link
View file

@ -0,0 +1 @@
/nix/store/8r0ifgzrfwls4lv0kimklysq8scjsnmw-beautyline-garuda-04052024