Improve configs

fixes, replace exa with eza, update home-manager version
This commit is contained in:
Tobias Reisinger 2023-09-10 21:41:00 +02:00
parent de0663730c
commit ccb5e6660e
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
13 changed files with 80 additions and 89 deletions

View file

@ -7,7 +7,7 @@
direnv # tool to load custom environments
docker-credential-helpers
dogdns # dns client
exa # ls-alternative
eza # ls-alternative
faas-cli # cli for openfaas
fzf # fuzzy finder
git # git
@ -20,14 +20,12 @@
lsof # who uses that drive/directory
openssh # ssh client and server
pass # password-store
playerctl # control media players
p7zip # tool to extract 7z archives
rclone # tool for remote storages
restic # backup tool
ripgrep # grep-alternative
rmtrash # rm wrapper to use trash
shellcheck # tool for shell-syntax
(spotifyd.override { withMpris = true; }) # spotify-daemon
tokei # project-language statistics
trash-cli # trash utils
unzip # unzip
@ -46,7 +44,7 @@
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "22.11";
home.stateVersion = "23.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;

View file

@ -1,28 +1,30 @@
{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
#alacritty # terminal emulator
bemenu # tool to display menus
ckb-next # corsair hardware control
dunst # notification-daemon
feh # image viewer and wallpaper-tool
flameshot # screenshot tool
gspell # spell highlighting for gtk applications
helvum # Pipewire GUI
j4-dmenu-desktop # collects .desktop files for a menu
keepassxc # password manager
libsForQt5.kdeconnect-kde # tool to connect a phone to the computer
pavucontrol # Pulseaudio GUI
#python310Packages.adblock # pylib for adblocking in qutebrowser
#python310Packages.pynacl # pylib for qutebrowser-keepassxc support
#(qutebrowser.override { enableWideVine = true; }) # vim-like browser
solaar # Logitech tool
#vagrant # tool for automated virtual machines
#virtualbox # tool for virtual machines
xfce.thunar # file manager
xfce.tumbler # thumbnail tool
xorg.xsetroot # tool to set x background stuff
];
imports = [
./fonts.nix
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
#alacritty # terminal emulator
bemenu # tool to display menus
dunst # notification-daemon
feh # image viewer and wallpaper-tool
firefox # browser
flameshot # screenshot tool
gspell # spell highlighting for gtk applications
j4-dmenu-desktop # collects .desktop files for a menu
keepassxc # password manager
libsForQt5.kdeconnect-kde # tool to connect a phone to the computer
pavucontrol # Pulseaudio GUI
#python310Packages.adblock # pylib for adblocking in qutebrowser
#python310Packages.pynacl # pylib for qutebrowser-keepassxc support
#(qutebrowser.override { enableWideVine = true; }) # vim-like browser
(ungoogled-chromium.override { enableWideVine = true; }) # browser
#vagrant # tool for automated virtual machines
#virtualbox # tool for virtual machines
xfce.thunar # file manager
xfce.tumbler # thumbnail tool
];
}

View file

@ -1,16 +1,15 @@
{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
nodejs # needed for lsp
fzf # fuzzy finder
#neovim # alternative to vim
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
nodejs # needed for lsp
fzf # fuzzy finder
];
programs.neovim = {
enable = true;
extraLuaConfig = ''
programs.neovim = {
enable = true;
extraLuaConfig = ''
require("set")
require("remap")
require("plugins")
@ -20,6 +19,6 @@ local status, ts_install = pcall(require, "nvim-treesitter.install")
if(status) then
ts_install.compilers = { "${pkgs.gcc}/bin/gcc" }
end
'';
};
'';
};
}

View file

@ -1,17 +1,22 @@
{ config, pkgs, ... }:
{
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
home.username = "serguzim";
home.homeDirectory = "/home/serguzim";
imports = [
./common.nix
./graphical.nix
./nvim.nix
./wayland.nix
];
imports = [
./common.nix
./audio.nix
./graphical.nix
./nvim.nix
./wayland.nix
];
home.packages = with pkgs; [
rustdesk # remote desktop tool
];
home.packages = with pkgs; [
ckb-next # corsair hardware control
#rustdesk # remote desktop tool # disabled for nightly from aur
solaar # Logitech tool
syncthing # file syncing tool
#flatpak
];
}

View file

@ -8,5 +8,8 @@
slurp # needed for screenshots
swww # wallpaper daemon
wl-clipboard # clipboard manager (tools)
#xdg-desktop-portal
#xdg-desktop-portal-hyprland
#xdg-desktop-portal-gtk
];
}

View file

@ -12,5 +12,6 @@
unclutter-xfixes # hides the cursor
xclip # clipboard CLI for X
xcompmgr # compositor for X
xorg.xsetroot # tool to set x background stuff
];
}