Set Styling for rofi
This commit is contained in:
50
home/programs/social/nixcord.nix
Normal file
50
home/programs/social/nixcord.nix
Normal file
@@ -0,0 +1,50 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
# home.nix
|
||||
{
|
||||
# ...
|
||||
programs.nixcord = {
|
||||
enable = true; # Enable Nixcord (It also installs Discord)
|
||||
vesktop.enable = true; # Vesktop
|
||||
dorion.enable = true; # Dorion
|
||||
quickCss = "some CSS"; # quickCSS file
|
||||
config = {
|
||||
useQuickCss = true; # use out quickCSS
|
||||
themeLinks = [
|
||||
# or use an online theme
|
||||
"https://raw.githubusercontent.com/link/to/some/theme.css"
|
||||
];
|
||||
frameless = true; # Set some Vencord options
|
||||
plugins = {
|
||||
hideAttachments.enable = true; # Enable a Vencord plugin
|
||||
ignoreActivities = {
|
||||
# Enable a plugin and set some options
|
||||
enable = true;
|
||||
ignorePlaying = true;
|
||||
ignoreWatching = true;
|
||||
ignoredActivities = [ "someActivity" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
dorion = {
|
||||
theme = "dark";
|
||||
zoom = "1.1";
|
||||
blur = "acrylic"; # "none", "blur", or "acrylic"
|
||||
sysTray = true;
|
||||
openOnStartup = true;
|
||||
autoClearCache = true;
|
||||
disableHardwareAccel = false;
|
||||
rpcServer = true;
|
||||
rpcProcessScanner = true;
|
||||
pushToTalk = true;
|
||||
pushToTalkKeys = [ "RControl" ];
|
||||
desktopNotifications = true;
|
||||
unreadBadge = true;
|
||||
};
|
||||
extraConfig = {
|
||||
# Some extra JSON config here
|
||||
# ...
|
||||
};
|
||||
};
|
||||
# ...
|
||||
}
|
@@ -1,8 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Install Element Desktop
|
||||
# Install Teamspeak Desktop
|
||||
home.packages = with pkgs; [
|
||||
teamspeak3
|
||||
# teamspeak6-client
|
||||
];
|
||||
}
|
||||
|
@@ -3,6 +3,6 @@
|
||||
{
|
||||
# Install Element Desktop
|
||||
home.packages = with pkgs; [
|
||||
zapzap
|
||||
zapzap
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user