hide some desktop entries
This commit is contained in:
parent
dbd31ab33b
commit
fe7ae76bdb
5 changed files with 35 additions and 2 deletions
|
@ -72,6 +72,10 @@ in
|
|||
xdg.mimeApps.enable = true;
|
||||
xdg.userDirs.enable = true;
|
||||
|
||||
xdg.desktopEntries."nixos-manual".name = "NixOS Manual";
|
||||
xdg.desktopEntries."nixos-manual".exec = "nixos-help";
|
||||
xdg.desktopEntries."nixos-manual".noDisplay = true;
|
||||
|
||||
home.stateVersion = "23.05";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,14 @@
|
|||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
xdg.desktopEntries."mpv".name = "mpv Media Player";
|
||||
xdg.desktopEntries."mpv".exec = "mpv --player-operation-mode=pseudo-gui -- %U";
|
||||
xdg.desktopEntries."mpv".noDisplay = true;
|
||||
|
||||
xdg.desktopEntries."umpv".name = "umpv Media Player";
|
||||
xdg.desktopEntries."umpv".exec = "umpv --player-operation-mode=pseudo-gui -- %U";
|
||||
xdg.desktopEntries."umpv".noDisplay = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
celluloid
|
||||
spotify-tui
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
xdg.desktopEntries."nvim".name = "Neovim wrapper";
|
||||
xdg.desktopEntries."nvim".exec = "nvim %F";
|
||||
xdg.desktopEntries."nvim".noDisplay = true;
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
viAlias = true;
|
||||
|
|
|
@ -1,4 +1,14 @@
|
|||
{ pkgs, ... }: {
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
xdg.desktopEntries."rofi".name = "Rofi";
|
||||
xdg.desktopEntries."rofi".exec = "rofi -show";
|
||||
xdg.desktopEntries."rofi".noDisplay = true;
|
||||
|
||||
xdg.desktopEntries."rofi-theme-selector".name = "Rofi Theme Selector";
|
||||
xdg.desktopEntries."rofi-theme-selector".exec = "rofi-theme-selector";
|
||||
xdg.desktopEntries."rofi-theme-selector".noDisplay = true;
|
||||
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
cycle = false;
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
./tmux.nix
|
||||
];
|
||||
|
||||
|
||||
xdg.desktopEntries."btop".name = "btop++";
|
||||
xdg.desktopEntries."btop".exec = "btop";
|
||||
xdg.desktopEntries."btop".noDisplay = true;
|
||||
|
||||
programs = {
|
||||
atuin.enable = true;
|
||||
bat = {
|
||||
|
|
Loading…
Reference in a new issue