mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-05 05:01:43 +00:00
added home-manager
This commit is contained in:
parent
f68b89be0f
commit
fa7041ff8b
@ -5,7 +5,7 @@ y = 15
|
||||
|
||||
[font]
|
||||
[font.normal]
|
||||
family = "DejaVu Sans Mono"
|
||||
family = "IosevkaTerm"
|
||||
style = "Regular"
|
||||
|
||||
[shell]
|
||||
|
@ -97,9 +97,11 @@ font:
|
||||
# - (macOS) Menlo
|
||||
# - (Linux/BSD) monospace
|
||||
# - (Windows) Consolas
|
||||
# family: MesloLGS NF
|
||||
# family: Hack
|
||||
family: DejaVu Sans Mono
|
||||
# family: Hack Nerd Font
|
||||
# family: DejaVuSansM Nerd Font
|
||||
# family: FiraCode Nerd Font
|
||||
# family: IosevkaTerm Nerd Font
|
||||
family: CaskaydiaCove NFM
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Regular
|
||||
|
@ -1,2 +1,3 @@
|
||||
set -U fish_greeting
|
||||
set -g -x NIX_PATH "/home/j/.nix-defexpr/channels/:/nix/var/nix/profiles/per-user/root/channels"
|
||||
starship init fish | source
|
||||
|
@ -7,6 +7,13 @@ in
|
||||
home.username = "j";
|
||||
home.homeDirectory = "/home/j";
|
||||
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnfreePredicate = (_: true);
|
||||
};
|
||||
};
|
||||
|
||||
# This value determines the Home Manager release that your
|
||||
# configuration is compatible with. This helps avoid breakage
|
||||
# when a new Home Manager release introduces backwards
|
||||
@ -21,10 +28,14 @@ in
|
||||
programs.home-manager.enable = true;
|
||||
home.packages = [
|
||||
pkgs.htop
|
||||
pkgs.zoom-us
|
||||
pkgs.fortune
|
||||
pkgs.tmux
|
||||
pkgs.git
|
||||
pkgs.git-lfs
|
||||
pkgs.hugo
|
||||
pkgs.fish
|
||||
pkgs.fd
|
||||
pkgs.helix
|
||||
pkgs.starship
|
||||
pkgs.ripgrep
|
||||
@ -32,9 +43,28 @@ in
|
||||
pkgs.ansible
|
||||
pkgs.ranger
|
||||
pkgs.sshpass
|
||||
pkgs.jq
|
||||
pkgs.bat
|
||||
pkgs.davfs2
|
||||
pkgs.pandoc
|
||||
pkgs.rustup
|
||||
#pkgs.texlive
|
||||
# pkgs.texlive.combine {
|
||||
# inherit (texlive) xcolor
|
||||
# }
|
||||
pkgs.wl-clipboard
|
||||
nixgl.auto.nixGLDefault
|
||||
#(pkgs.python311.withPackages (p: with p; [
|
||||
#jupyterlab
|
||||
#matplotlib
|
||||
#pandas
|
||||
#openpyxl
|
||||
#]))
|
||||
pkgs.alacritty
|
||||
(pkgs.nerdfonts.override { fonts = [ "FiraCode" "DejaVuSansMono" ]; })
|
||||
pkgs.wezterm
|
||||
pkgs.kitty
|
||||
pkgs.zellij
|
||||
(pkgs.nerdfonts.override { fonts = [ "Iosevka" "IosevkaTerm" "Hack" "CascadiaCode" "FiraCode" "DejaVuSansMono" ]; })
|
||||
];
|
||||
|
||||
fonts.fontconfig.enable = true;
|
||||
@ -47,4 +77,5 @@ in
|
||||
lightline-vim
|
||||
];
|
||||
};
|
||||
services.owncloud-client.enable = true;
|
||||
}
|
||||
|
8
kitty/.config/kitty/open-actions.conf
Normal file
8
kitty/.config/kitty/open-actions.conf
Normal file
@ -0,0 +1,8 @@
|
||||
protocol file
|
||||
mime image/*
|
||||
action launch --type=overlay kitten icat --hold ${FILE_PATH}
|
||||
|
||||
protocol file
|
||||
ext log
|
||||
action launch --title ${FILE} --type=os-window tail -f ${FILE_PATH}
|
||||
action change_font_size current -2
|
16
wezterm/.wezterm.lua
Normal file
16
wezterm/.wezterm.lua
Normal file
@ -0,0 +1,16 @@
|
||||
local wezterm = require 'wezterm'
|
||||
local config = {}
|
||||
|
||||
config.font = wezterm.font 'Iosevka Nerd Font'
|
||||
config.show_tab_index_in_tab_bar = true
|
||||
|
||||
-- wezterm.on('update-right-status', function(window, pane)
|
||||
-- window:set_left_status 'left'
|
||||
-- window:set_right_status 'right'
|
||||
-- end)
|
||||
|
||||
config.use_fancy_tab_bar = true
|
||||
config.show_tabs_in_tab_bar = false
|
||||
config.show_new_tab_button_in_tab_bar = false
|
||||
|
||||
return config
|
Loading…
Reference in New Issue
Block a user