Compare commits
No commits in common. "bbd78078c4d7fad8e06814c034fc08864159b265" and "1c8e0b57d97b4606bfc454a767bd4b1afdbe74f6" have entirely different histories.
bbd78078c4
...
1c8e0b57d9
|
|
@ -88,13 +88,15 @@ in {
|
||||||
blueman
|
blueman
|
||||||
upower
|
upower
|
||||||
proselint # for prose lint
|
proselint # for prose lint
|
||||||
glib
|
|
||||||
] ++ # Basic utilities
|
] ++ # Basic utilities
|
||||||
[ bitwarden-cli htop snore hledger hledger-ui ]
|
[ bitwarden-cli htop snore hledger hledger-ui ]
|
||||||
++ # Personalized selection of command-line (CLI/TUI) apps
|
++ # Personalized selection of command-line (CLI/TUI) apps
|
||||||
[ terminal ] ++ # Terminal emulator
|
[ terminal ] ++ # Terminal emulator
|
||||||
[
|
[
|
||||||
qutebrowser
|
qutebrowser
|
||||||
|
cinnamon.nemo
|
||||||
|
gnome.file-roller
|
||||||
|
cinnamon.nemo-fileroller
|
||||||
evince
|
evince
|
||||||
imv
|
imv
|
||||||
vlc
|
vlc
|
||||||
|
|
@ -166,14 +168,8 @@ in {
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Fixes electron apps and also nnn
|
# Fixes electron apps
|
||||||
home.sessionVariables =
|
home.sessionVariables = { NIXOS_OZONE_WL = "1"; };
|
||||||
let detachedtext = pkgs.writeShellScript "detachedtext"
|
|
||||||
(builtins.readFile "${scripts}/detachedtext.sh");
|
|
||||||
in {
|
|
||||||
NIXOS_OZONE_WL = "1";
|
|
||||||
VISUAL = detachedtext;
|
|
||||||
};
|
|
||||||
|
|
||||||
# configure fonts correctly
|
# configure fonts correctly
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
|
|
@ -216,25 +212,10 @@ in {
|
||||||
"application/x-shellscript"
|
"application/x-shellscript"
|
||||||
"text/x-c"
|
"text/x-c"
|
||||||
"text/x-c++"
|
"text/x-c++"
|
||||||
"text/x-devicetree-source"
|
|
||||||
];
|
];
|
||||||
categories = [ "Utility" "TextEditor" ];
|
categories = [ "Utility" "TextEditor" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.nnn = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
xdg.desktopEntries.nnn = {
|
|
||||||
name = "nnn";
|
|
||||||
genericName = "File Manager";
|
|
||||||
comment = "Terminal file manager";
|
|
||||||
exec = "nnn -Ade";
|
|
||||||
terminal = true;
|
|
||||||
mimeType = [ "inode/directory" ];
|
|
||||||
categories = [ "System" "FileTools" "FileManager" "ConsoleOnly" ];
|
|
||||||
settings.Keywords = "File;Manager;Management;Explorer;Launcher";
|
|
||||||
};
|
|
||||||
|
|
||||||
# programs.zathura = {
|
# programs.zathura = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# };
|
# };
|
||||||
|
|
|
||||||
|
|
@ -88,9 +88,6 @@ in {
|
||||||
''
|
''
|
||||||
exec dunst
|
exec dunst
|
||||||
'' + # Enable notifications
|
'' + # Enable notifications
|
||||||
''
|
|
||||||
exec "activate-linux -c 0.5-0.5-0.5-0.5"
|
|
||||||
'' + # Enable Activate Linux
|
|
||||||
''
|
''
|
||||||
bindgesture swipe:4:up focus parent
|
bindgesture swipe:4:up focus parent
|
||||||
bindgesture swipe:4:left workspace prev
|
bindgesture swipe:4:left workspace prev
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
#!/usr/bin/env sh
|
|
||||||
|
|
||||||
if [ -n "$TMUX" ] ; then
|
|
||||||
# tmux session running
|
|
||||||
tmux split-window -h "$EDITOR \"$*\""
|
|
||||||
else
|
|
||||||
# Remove option --tab for new window
|
|
||||||
( alacritty -e xdg-open $* & )
|
|
||||||
fi
|
|
||||||
Loading…
Reference in a new issue