Removed a lot of desktop entries, to clean up Menu. Added a boot splash screen.
This commit is contained in:
92
home.nix
92
home.nix
@ -24,16 +24,86 @@
|
||||
# changes in each release.
|
||||
home.stateVersion = version;
|
||||
|
||||
xdg = {
|
||||
desktopEntries.youtube = {
|
||||
name = "YouTube";
|
||||
exec = "chromium --app=https://www.youtube.com";
|
||||
terminal = false;
|
||||
type = "Application";
|
||||
icon = "applications-multimedia";
|
||||
categories = [ "AudioVideo" "Player" "Network" ];
|
||||
xdg = {
|
||||
desktopEntries.youtube = {
|
||||
name = "YouTube";
|
||||
exec = "chromium --app=https://www.youtube.com";
|
||||
terminal = false;
|
||||
type = "Application";
|
||||
icon = "applications-multimedia";
|
||||
categories = [ "AudioVideo" "Player" "Network" ];
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.konsole" = {
|
||||
name = "Konsole";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.kinfocenter" = {
|
||||
name = "Info Center";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.khelpcenter" = {
|
||||
name = "Help Center";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.kmenuedit" = {
|
||||
name = "Menu Editor";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."micro" = {
|
||||
name = "Micro";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."nvim" = {
|
||||
name = "Neovim";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."btop" = {
|
||||
name = "btop++";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."chromium-desktop" = {
|
||||
name = "Chromium";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."nixos-manual" = {
|
||||
name = "NixOS Manual";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."org.freedesktop.IBus.Setup" = {
|
||||
name = "IBus Preferences";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.drkonqi" = {
|
||||
name = "Crashed Processes Viewer";
|
||||
noDisplay = true;
|
||||
};
|
||||
desktopEntries."com.cloudflare.WarpTaskbar" = {
|
||||
name = "Cloudflare Zero Trust";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.kwrite" = {
|
||||
name = "KWrite";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
desktopEntries."org.kde.discover" = {
|
||||
name = "Discover";
|
||||
noDisplay = true;
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs = {
|
||||
@ -43,7 +113,9 @@ xdg = {
|
||||
kitty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
background_opacity = "0.7"; #The higher the value, the darker the console
|
||||
background_opacity = "0.2"; #The higher the value, the darker the console
|
||||
|
||||
background_blur = 10;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user