user-config/home.nix

300 lines
6 KiB
Nix
Raw Normal View History

2023-07-25 14:38:50 +00:00
{ config, pkgs, lib, ... }:
with builtins;
with import ./modules/neovim-config.nix { inherit pkgs lib fromGitHub; };
2023-07-01 04:21:17 +00:00
{
2023-07-02 03:43:47 +00:00
home.username = "hive";
home.homeDirectory = "/home/hive";
2023-08-02 13:21:35 +00:00
home.stateVersion = import ./version.nix;
2023-07-01 04:21:17 +00:00
home.packages = with pkgs; [
bat
diceware
pwgen
evolution
2023-07-23 22:34:50 +00:00
srain
2023-08-02 13:07:32 +00:00
dconf2nix
inkscape
flare-signal
2023-07-23 22:34:50 +00:00
neovide
2023-07-24 06:39:26 +00:00
xdg-ninja
2023-07-01 04:21:17 +00:00
schildichat-desktop
dino
jq
2023-07-01 04:21:17 +00:00
mangohud
2023-07-27 09:08:18 +00:00
nix-index
2023-07-01 04:21:17 +00:00
termpdfpy
2023-07-23 22:34:50 +00:00
gimp
2023-07-01 04:21:17 +00:00
lollypop
skim
2023-07-25 14:38:50 +00:00
telegram-desktop
nix-output-monitor
2023-07-23 22:34:50 +00:00
picard
2023-07-01 04:21:17 +00:00
syncthing
armcord
2023-07-23 22:34:50 +00:00
tdesktop
2023-07-01 04:21:17 +00:00
ripgrep
tmate
2023-07-24 05:34:37 +00:00
comic-mono
2023-07-24 08:45:43 +00:00
comfortaa
2023-07-01 04:21:17 +00:00
btop
apostrophe
warp
syncplay
2023-07-25 14:38:50 +00:00
virt-manager
2023-07-01 04:21:17 +00:00
mpv
wl-clipboard
adw-gtk3
2023-07-27 09:08:18 +00:00
(writeShellScriptBin "strings" ''${busybox}/bin/strings "$@"'')
2023-07-24 05:34:37 +00:00
] ++ ( with pkgs.gnome; [
2023-07-01 04:21:17 +00:00
gnome-tweaks
dconf-editor
gnome-boxes
2023-07-24 05:34:37 +00:00
] ++ ( with pkgs.gnomeExtensions; [
2023-07-01 04:21:17 +00:00
night-theme-switcher
unite
2023-07-01 04:21:17 +00:00
rounded-window-corners
appindicator
2023-07-25 14:38:50 +00:00
gsconnect
pano
unite
user-avatar-in-quick-settings
2023-07-24 05:34:37 +00:00
]));
2023-07-01 04:21:17 +00:00
2023-08-02 13:21:35 +00:00
home.file = { # If managing individual files is needed
2023-07-02 03:43:47 +00:00
};
home.sessionVariables = {
# system configuration
2023-07-24 05:34:37 +00:00
VISUAL = "neovide --nofork";
NEOVIDE_MULTIGRID = 1;
ZELLIJ_AUTO_EXIT = "true";
2023-07-02 03:43:47 +00:00
# fish config
2023-07-25 14:48:50 +00:00
fish_greeting = " heya ${config.home.username}, welcome to $(hostnamectl --pretty) ~";
2023-07-02 03:43:47 +00:00
};
2023-08-02 13:07:32 +00:00
#configure dconf
dconf.settings = {
"org/gnome/mutter".center-new-windows = true;
"org/gnome/desktop/sound".allow-volume-above-100-percent = true;
"org/gnome/settings-daemon/plugins/media-keys".custom-keybindings
= [
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"
];
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0"
= {
binding = "<Super>t";
command = "wezterm";
name = "Wezterm";
};
};
2023-07-02 03:43:47 +00:00
2023-07-01 04:21:17 +00:00
# configure programs
programs.firefox = { #add options later
enable = true;
2023-08-02 12:30:18 +00:00
};
2023-07-01 04:21:17 +00:00
programs.home-manager.enable = true;
programs.zellij = {
enable = true;
enableFishIntegration = true;
settings = {
default_layout = "compact";
ui = {
pane_frames = {
hide_session_name = true;
rounded_corners = true;
};
};
};
};
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
2023-07-24 06:57:47 +00:00
programs.git = {
enable = true;
2023-07-24 07:07:00 +00:00
lfs.enable = true;
2023-07-24 06:57:47 +00:00
delta = {
enable = true;
options = {
decorations = {
commit-decoration-style = "bold yellow box ul";
file-decoration-style = "none";
file-style = "bold yellow ul";
hunk-header-decoration-style = "cyan box ul";
};
features = "side-by-side line-numbers decorations";
};
};
2023-07-24 07:07:00 +00:00
signing = {
key = "DD901BA40FBBB127";
signByDefault = true;
};
userEmail = "theotheroracle@disroot.org";
userName = "Bit Borealis";
extraConfig = {
init.defaultBranch = "main";
2023-07-24 06:57:47 +00:00
};
};
2023-07-24 05:34:37 +00:00
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
withNodeJs = true;
2023-07-24 08:45:43 +00:00
plugins = with pkgs.vimPlugins; [
editorconfig-nvim
vim-airline
vim-airline-themes
lsp_signature-nvim
nvim-colorizer-lua
nnn-vim
nvim-surround
nvim-treesitter.withAllGrammars
(fromGitHub "HEAD" "hiphish/rainbow-delimiters.nvim")
nvim-lspconfig
];
extraConfig = mkConfig {
settings = {
number = true;
linebreak = true;
showbreak = "+>";
2023-07-27 08:30:37 +00:00
textwidth = 80;
2023-07-24 08:45:43 +00:00
showmatch = true;
hlsearch = true;
smartcase = true;
ignorecase = true;
autoindent = true;
2023-07-27 08:30:37 +00:00
expandtab = false;
2023-07-24 08:45:43 +00:00
smartindent = true;
smarttab = true;
tabstop = 3;
shiftwidth = 3;
display = "lastline";
formatoptions = "jt";
ruler = true;
2023-07-27 08:30:37 +00:00
colorcolumn = 80;
2023-07-24 08:45:43 +00:00
termguicolors = true;
};
};
2023-07-24 05:34:37 +00:00
coc = {
enable = true;
};
};
2023-07-01 04:21:17 +00:00
programs.fish = {
enable = true;
shellAbbrs = {
e = "edit";
2023-07-01 04:21:17 +00:00
nxs = "nix search nixpkgs";
nxr = "nix run nixpkgs#";
nxh = "nix shell nixpkgs#";
nxw = "sudo nixos-rebuild switch";
2023-07-01 04:21:17 +00:00
nxu = "sudo nixos-rebuild boot --upgrade";
nxc = "sudo nix-collect-garbage -d";
hme = "edit ~/.config/home-manager/home.nix";
2023-07-01 04:21:17 +00:00
};
2023-07-24 05:34:37 +00:00
shellAliases = {
aria = "aria2c -c -k1M -x10";
dw = "diceware -n 6 -d -";
2023-07-24 06:30:52 +00:00
ksh = "kitty +kitten ssh";
2023-07-24 06:35:42 +00:00
p = "ping -s 128 -O -c 100 -A -D 1.1.1.1";
pf = "sudo ping -f -c 100 -A 1.1.1.1";
2023-07-24 05:34:37 +00:00
};
functions = {
2023-08-02 13:07:32 +00:00
hmu = ''
set -l hm_before_commit $PWD
cd ~/.config/home-manager/
git diff
git add .
git commit
git push
cd $hm_before_commit
'';
ng = ''
set NG ~/.ssh/ng/
if test \( -e $NG/0 \) -a \( -e $NG/1 \)
echo (shuf -n 1 $NG/0) (shuf -n 1 $NG/1)
else
echo missing NG files
end
'';
2023-07-24 05:34:37 +00:00
edit = ''
if test $XDG_SESSION_TYPE != tty
2023-07-24 06:57:47 +00:00
neovide $argv #should be fixed later to use VISUAL somehow, reference funced
2023-07-24 05:34:37 +00:00
else
$EDITOR $argv
end
'';
fish_prompt = ''
set -l last_status $status
prompt_login
echo -n ' : '
set_color $fish_color_cwd
echo -n (prompt_pwd)
set_color normal
fish_vcs_prompt '|%s'
echo " "
if not test $last_status -eq 0
set_color $fish_color_error
end
echo -n "» "
2023-07-24 05:34:37 +00:00
set_color normal
'';
};
2023-07-01 04:21:17 +00:00
interactiveShellInit = ''
fish_add_path ~/.local/bin
fish_add_path ~/.local/bin/scripts
fish_add_path ~/.local/share/cargo/bin
fish_add_path /var/lib/flatpak/exports/bin
fish_vi_key_bindings
'';
};
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
settings = {
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/pass";
PASSWORD_STORE_CLIP_TIME = "60";
};
};
programs.wezterm = {
enable = true;
2023-08-02 13:07:32 +00:00
enableZshIntegration = true;
};
2023-07-24 05:34:37 +00:00
programs.kitty = {
enable = true;
shellIntegration.enableFishIntegration = true;
theme = "Catppuccin-Mocha";
keybindings = {};
2023-07-24 05:34:37 +00:00
settings = {
clear_all_shortcuts = true;
tab_bar_style = "hidden";
2023-07-24 05:34:37 +00:00
hide_window_decorations = true;
remember_window_size = false;
initial_window_width = "86c";
initial_window_height = "28c";
2023-07-24 05:34:37 +00:00
allow_remote_control = true;
shell = ".";
editor = ".";
2023-07-24 05:34:37 +00:00
font_family = "Comic Mono";
font_size = 12;
2023-07-24 05:34:37 +00:00
};
};
2023-07-01 04:21:17 +00:00
programs.browserpass.enable = true;
programs.gpg.enable = true;
2023-07-24 05:34:37 +00:00
2023-08-02 13:21:35 +00:00
services.etesync-dav = { # TODO configure this
2023-07-24 06:39:26 +00:00
enable = true;
};
2023-07-24 05:34:37 +00:00
# themeing
qt = {
enable = true;
platformTheme = "gnome";
style.name = "adwaita";
};
2023-07-01 04:21:17 +00:00
}