Compare commits

..

No commits in common. "954b3904976fcc22d57c01901fa6462c22556ebd" and "6d76dbd64d272629141565605ba3e43d914c5dd9" have entirely different histories.

6 changed files with 3 additions and 42 deletions

View file

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

View file

@ -1,14 +0,0 @@
{ ... }:
{
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; [ home.packages = (with pkgs; let vscode-extensions = inputs.vscode-extensions.extensions."${system}"; in [
# Chat # Chat
element-desktop element-desktop
vesktop vesktop
@ -18,7 +18,6 @@
# 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 # Set icon theme TODO Package modern beautyline
iconTheme = "beautyline-garuda"; iconTheme = "breeze-dark";
# 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

@ -1,22 +0,0 @@
# 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
View file

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