Added evince (Replacing zathura), shotwell, lorien, htop
Fixed issue with xdg config file in last commit Added progress bar to brightness indicator
This commit is contained in:
parent
d1641690be
commit
63ce1468dc
16
home.nix
16
home.nix
|
|
@ -30,20 +30,20 @@ in
|
||||||
# Install packages
|
# Install packages
|
||||||
home.packages = with pkgs;
|
home.packages = with pkgs;
|
||||||
[ gcc tree-sitter ] ++ # Basic dev tools
|
[ gcc tree-sitter ] ++ # Basic dev tools
|
||||||
|
[ kak-lsp marksman ] ++ # Language servers
|
||||||
[ texliveFull ] ++ # Typesetting
|
[ texliveFull ] ++ # Typesetting
|
||||||
(with ocamlPackages; [ ocaml opam dune_3 dune-release merlin ocaml-lsp odoc ocamlformat utop ]) ++ # OCaml
|
(with ocamlPackages; [ ocaml opam dune_3 dune-release merlin ocaml-lsp odoc ocamlformat utop ]) ++ # OCaml
|
||||||
[ python3 ] ++ # I guess.....
|
[ python3 ] ++ # I guess.....
|
||||||
[ julia ] ++ # Julia
|
[ julia ] ++ # Julia
|
||||||
[ nil ] ++ # Nix tools
|
[ nil ] ++ # Nix tools
|
||||||
[ grim slurp wl-clipboard jq (callPackage ./pkgs/xdg-terminal-exec/xdg-terminal-exec.nix {}) blueman ] ++ # Basic utilities
|
[ grim slurp wl-clipboard jq (callPackage ./pkgs/xdg-terminal-exec/xdg-terminal-exec.nix {}) blueman ] ++ # Basic utilities
|
||||||
[ bitwarden-cli ] ++ # Personalized selection of command-line (CLI/TUI) apps
|
[ bitwarden-cli htop ] ++ # Personalized selection of command-line (CLI/TUI) apps
|
||||||
[ terminal ] ++ # Terminal emulator
|
[ terminal ] ++ # Terminal emulator
|
||||||
[ firefox cinnamon.nemo gnome.file-roller cinnamon.nemo-fileroller imv vlc pavucontrol ] ++ # Basic graphical apps
|
[ firefox cinnamon.nemo gnome.file-roller cinnamon.nemo-fileroller evince imv vlc pavucontrol ] ++ # Basic graphical apps
|
||||||
[ libreoffice signal-desktop element-desktop prismlauncher mumble gimp inkscape deluge-gtk ] ++ # Personalized selection of graphical apps
|
[ libreoffice signal-desktop element-desktop prismlauncher mumble gimp inkscape deluge-gtk shotwell lorien ] ++ # Personalized selection of graphical apps
|
||||||
[ (callPackage ./pkgs/mons/mons.nix {}) ] ++ # Games
|
[ (callPackage ./pkgs/mons/mons.nix {}) ] ++ # Games
|
||||||
[ swaybg bemenu j4-dmenu-desktop fcitx5-with-addons ] ++ # Sway- and Wayland-related packages
|
[ swaybg bemenu j4-dmenu-desktop fcitx5-with-addons ] ++ # Sway- and Wayland-related packages
|
||||||
[ noto-fonts redhat-official-fonts overpass ibm-plex font-awesome ] ++ # Fonts
|
[ noto-fonts redhat-official-fonts overpass ibm-plex font-awesome ] ++ # Fonts
|
||||||
[ kak-lsp ] ++
|
|
||||||
# [ papirus-icon-theme ] ++ # Icons
|
# [ papirus-icon-theme ] ++ # Icons
|
||||||
# [ vanilla-dmz ] ++ # Cursor
|
# [ vanilla-dmz ] ++ # Cursor
|
||||||
[ ] ++ # Temp
|
[ ] ++ # Temp
|
||||||
|
|
@ -128,11 +128,11 @@ in
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.config."kak-lsp/kak-lsp.toml".source = ./programs/kakoune/kak-lsp.toml;
|
xdg.configFile."kak-lsp/kak-lsp.toml".source = ./programs/kakoune/kak-lsp.toml;
|
||||||
|
|
||||||
programs.zathura = {
|
# programs.zathura = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
};
|
# };
|
||||||
|
|
||||||
programs.pandoc = {
|
programs.pandoc = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ then
|
||||||
echo ${thresh[$new]} | tee /sys/class/backlight/amdgpu_bl0/brightness
|
echo ${thresh[$new]} | tee /sys/class/backlight/amdgpu_bl0/brightness
|
||||||
if [[ $? -eq 0 ]] && [[ -f $(which dunstify) ]]
|
if [[ $? -eq 0 ]] && [[ -f $(which dunstify) ]]
|
||||||
then
|
then
|
||||||
dunstify -a "changebrightness.sh" -u low -i weather-clear -h string:x-dunst-stack-tag:changebrightness "Brightness: $new"
|
dunstify -a "changebrightness.sh" -u low -i weather-clear -h string:x-dunst-stack-tag:changebrightness -h string:hlcolor:#ffffff -h int:value:$(($new*10)) "Brightness: $new"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
6
todo
6
todo
|
|
@ -1,10 +1,8 @@
|
||||||
# enable NUR and firefox extensions
|
# enable NUR and firefox extensions
|
||||||
set up a keyring and store networkmanager wifi passwords in there instead of plain text
|
set up a keyring and store networkmanager wifi passwords in there instead of plain text
|
||||||
mute button
|
|
||||||
i3status bar
|
|
||||||
bluetooth setup
|
|
||||||
media player daemon
|
media player daemon
|
||||||
dmenu files
|
dmenu files
|
||||||
notifications timeout and other assorted settings
|
notifications timeout and other assorted settings
|
||||||
add pandoc support for markdown rendering
|
add pandoc support for markdown rendering
|
||||||
seconds don't show on waybar lol
|
configure click behaviour dunst
|
||||||
|
add task manager
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue