mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{ config, pkgs, ... }:
|
|
let
|
|
elkowar_local = import ./local/default.nix {};
|
|
in
|
|
{
|
|
home.packages = [
|
|
elkowar_local.bashtop
|
|
pkgs.htop
|
|
pkgs.direnv
|
|
pkgs.rnix-lsp
|
|
pkgs.nix-prefetch-git
|
|
pkgs.gtop
|
|
pkgs.simplescreenrecorder
|
|
pkgs.bat
|
|
pkgs.websocat
|
|
#pkgs.timg
|
|
];
|
|
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
#alacritty = import ./config/alacritty.nix; # <- https://github.com/guibou/nixGL
|
|
#firefox = import ./config/firefox.nix;
|
|
feh = import ./config/feh.nix;
|
|
lsd = {
|
|
enable = true;
|
|
enableAliases = true;
|
|
};
|
|
|
|
mpv = {
|
|
enable = true;
|
|
bindings = {
|
|
WHEEL_UP = "add volume 5";
|
|
WHEEL_DOWN = "add volume -5";
|
|
WHEEL_LEFT = "seek -3";
|
|
WHEEL_RIGHT = "seek 3";
|
|
h = "seek -3";
|
|
l = "seek 3";
|
|
};
|
|
};
|
|
|
|
fzf = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
defaultCommand = "rg --files";
|
|
fileWidgetCommand = "fd --type f";
|
|
changeDirWidgetCommand = "rg --files --null | xargs -0 dirname | sort -u";
|
|
};
|
|
|
|
direnv = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
#enableNixDirenvIntegration = true;
|
|
};
|
|
};
|
|
|
|
services = {
|
|
kdeconnect.enable = true;
|
|
};
|
|
|
|
|
|
|
|
home.username = "leon";
|
|
home.homeDirectory = "/home/leon";
|
|
|
|
home.stateVersion = "20.09";
|
|
}
|