From c80598d4e4ffea73647b2ea8440a6080596968fe Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Mon, 3 Jul 2023 11:27:19 +0300 Subject: 2023-07-03 --- modules/common/common/home-manager.nix | 7 +- modules/common/git.nix | 6 +- modules/common/profiles/default.nix | 3 - modules/common/vim/default.nix | 62 +++++++-------- modules/common/vim/rc.vim | 140 +++++++-------------------------- modules/darwin/default.nix | 1 + modules/darwin/profiles/headful.nix | 9 +++ modules/darwin/vim/default.nix | 26 ++++++ modules/nixos/default.nix | 1 + modules/nixos/ntfy.nix | 9 --- modules/nixos/vim/default.nix | 39 +++++++++ 11 files changed, 140 insertions(+), 163 deletions(-) create mode 100644 modules/darwin/vim/default.nix create mode 100644 modules/nixos/vim/default.nix (limited to 'modules') diff --git a/modules/common/common/home-manager.nix b/modules/common/common/home-manager.nix index 7fa21f8..44b0eaa 100644 --- a/modules/common/common/home-manager.nix +++ b/modules/common/common/home-manager.nix @@ -1,5 +1,5 @@ { - config, + inputs, lib, localUsername ? lib.my.username, ... @@ -11,7 +11,10 @@ with lib; { hm = { news.display = "silent"; - home = {inherit (config.system) stateVersion;}; + # NOTE Inheriting directly from `system.stateVersion` does not work on MacOS for + # some reason. + home.stateVersion = with builtins; + head (split "\n" (readFile "${inputs.nixpkgs}/.version")); }; home-manager = { diff --git a/modules/common/git.nix b/modules/common/git.nix index ce4e505..0bd7720 100644 --- a/modules/common/git.nix +++ b/modules/common/git.nix @@ -14,7 +14,7 @@ in { config = mkIf cfg.client.enable { secrets = let - # HACK Darwin doesn't support XDG specifications. + # HACK MacOS doesn't support XDG specifications. configHome = "${config.my.home}/.config"; in { glab-cli-config = { @@ -97,8 +97,8 @@ in { wtc = "!${curl} -sq whatthecommit.com/index.txt | ${git} commit -F -"; }; - # All helper tools/editor generated files should go here. This must - # be kept relatively clean and void of any project-specific residual + # All helper tools/editor generated files should go here. This must be + # kept relatively clean and void of any project-specific residual # files. ignores = [ "*~" diff --git a/modules/common/profiles/default.nix b/modules/common/profiles/default.nix index 4f8fa4d..ad5e841 100644 --- a/modules/common/profiles/default.nix +++ b/modules/common/profiles/default.nix @@ -81,10 +81,7 @@ in { time.timeZone = "Europe/Moscow"; environment.systemPackages = with pkgs; [ - ddrescue file - git - gnupg tree ]; }; diff --git a/modules/common/vim/default.nix b/modules/common/vim/default.nix index 2ee8a0b..3755201 100644 --- a/modules/common/vim/default.nix +++ b/modules/common/vim/default.nix @@ -7,43 +7,37 @@ with lib; let cfg = config.nixfiles.modules.vim; in { - options.nixfiles.modules.vim.enable = mkEnableOption "Vim"; + options.nixfiles.modules.vim = { + enable = mkEnableOption "Vim"; + + rc = mkOption { + type = types.str; + default = readFile ./rc.vim; + description = "Configuration file."; + }; + + plugins = mkOption { + type = with types; listOf package; + default = with pkgs.vimPlugins; [ + editorconfig-vim + vim-eunuch + vim-nix + vim-sensible + vim-sleuth + vim-surround + vim-unimpaired + ]; + description = "Plugins."; + }; + }; config = mkIf cfg.enable { - programs.vim.package = with pkgs; - (vim_configurable.override { - features = "normal"; - cscopeSupport = false; - darwinSupport = pkgs.stdenv.isDarwin; - guiSupport = false; - luaSupport = false; - multibyteSupport = false; - netbeansSupport = false; - nlsSupport = false; - perlSupport = false; - pythonSupport = false; - rubySupport = false; - tclSupport = false; - ximSupport = false; - }) - .customize { - name = "vim"; - vimrcConfig = { - customRC = readFile ./rc.vim; - packages.myVimPackage.start = with vimPlugins; [ - editorconfig-vim - vim-eunuch - vim-nix - vim-sleuth - vim-surround - vim-unimpaired - ]; - }; + environment = with config.programs.vim; { + systemPackages = [package]; + variables = rec { + EDITOR = mkOverride 100 "${package}/bin/vim"; + VISUAL = EDITOR; }; - - environment = { - systemPackages = [config.programs.vim.package]; - variables.EDITOR = mkOverride 100 "vim"; }; }; } diff --git a/modules/common/vim/rc.vim b/modules/common/vim/rc.vim index 945643a..3bd9eb7 100644 --- a/modules/common/vim/rc.vim +++ b/modules/common/vim/rc.vim @@ -1,38 +1,31 @@ -set nocompatible - let $VIMFILES = expand(':p:h') let g:skip_defaults_vim = 1 let g:netrw_dirhistmax = 0 -set autoread -set backspace=indent,eol,start +if has('unnamedplus') + set clipboard^=unnamedplus +else + set clipboard^=unnamed +endif -set clipboard=unnamedplus +set backspace=indent,eol,start set diffopt+=iwhite set hidden -set history=256 set lazyredraw set mouse= set path+=** -set tabpagemax=50 set viminfo= set cmdheight=1 -set display+=lastline set fillchars=vert:\ " -set laststatus=2 set modeline set noshowmode -set ruler set shortmess+=I set textwidth=0 set title -set sessionoptions-=options -set viewoptions-=options - set noerrorbells set novisualbell @@ -49,7 +42,6 @@ set completeopt+=longest set gdefault set hlsearch -set incsearch set iskeyword+=- set magic @@ -75,7 +67,6 @@ if v:version >= 700 endif set wildignorecase -set wildmenu set wildignore= set nobackup @@ -97,65 +88,10 @@ set smarttab set softtabstop=4 set tabstop=4 -autocmd BufEnter *.* :set colorcolumn= - -if &t_Co == 8 && $TERM !~# '^Eterm' - set t_Co=16 -endif - -if &listchars ==# 'eol:$' - set listchars=tab:>\ ,trail:-,extends:>,precedes:<,nbsp:+ -endif +set colorcolumn= +let g:EditorConfig_max_line_indicator = "none" -if v:version > 703 || v:version == 703 && has("patch541") - set formatoptions+=j -endif - -if has('path_extra') - setglobal tags-=./tags tags-=./tags; tags^=./tags; -endif - -if !has('nvim') && &ttimeoutlen == -1 - set ttimeout - set ttimeoutlen=100 -endif - -try - set encoding=utf-8 - scriptencoding utf-8 -catch -endtry - -try - if &fileencodings !~? "utf-8" - let g:added_fenc_utf8 = 1 - set fileencodings+=utf-8 - endif -catch -endtry - -if has('autocmd') - filetype plugin indent on - - if exists("+omnifunc") - autocmd Filetype * - \ if &omnifunc == "" | - \ setlocal omnifunc=syntaxcomplete#Complete | - \ endif - endif - - autocmd BufEnter * set noreadonly -endif - -if has('syntax') && !exists('g:syntax_on') - syntax enable -endif - -if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# '' - runtime! macros/matchit.vim -endif - -nnoremap +nnoremap let mapleader=" " nnoremap :W :w @@ -163,27 +99,27 @@ nnoremap :W! :w! nnoremap :Q :q nnoremap :Q! :q! -nnoremap j v:count ? 'j' : 'gj' -nnoremap k v:count ? 'k' : 'gk' +nnoremap j v:count ? 'j' : 'gj' +nnoremap k v:count ? 'k' : 'gk' nnoremap J gt nnoremap K gT -nnoremap ^h -vnoremap ^h +nnoremap ^h +vnoremap ^h nnoremap H ^h vnoremap H ^h -nnoremap $ -vnoremap $ +nnoremap $ +vnoremap $ nnoremap L $ vnoremap L $ nnoremap N Nzzzv nnoremap n nzzzv -inoremap u -inoremap u +inoremap u +inoremap u vnoremap < >gv @@ -192,24 +128,22 @@ vnoremap >>_ nnoremap <<_ -nnoremap ]b :bnext -nnoremap [b :bprevious +nnoremap ]b :bnext +nnoremap [b :bprevious -nnoremap h -nnoremap j -nnoremap k -nnoremap l +nnoremap h +nnoremap j +nnoremap k +nnoremap l nnoremap * /\<=expand('')\> nnoremap # ?\<=expand('')\> -nnoremap :nohlsearch=has('diff')?'diffupdate':'' - cnoremap ;/ =expand('%:p:h').'/' cnoremap ;; =expand('%:t') cnoremap ;. =expand('%:p:r') -nnoremap . :lcd %:p:h +nnoremap . :lcd %:p:h nnoremap Q @q @@ -225,29 +159,11 @@ nnoremap P "+P inoremap "+pi cnoremap + -nmap w :w! -nmap wq :wq! +nmap w :w! +nmap wq :wq! -nnoremap ZX :qa! +nnoremap ZX :qa! -nnoremap q :q +nnoremap q :q command WS w !sudo tee "%" >/dev/null - -function! SwitchCase() - normal! ~ - if strlen(getline('.')) != virtcol('.') - normal! h - endif -endfunction -nnoremap ~ :call SwitchCase() - -function! s:GM() - execute 'normal! ^' - let first_col = virtcol('.') - execute 'normal! g_' - let last_col = virtcol('.') - execute 'normal! ' . (first_col + last_col) / 2 . '|' -endfunction -nnoremap gm :call GM() -onoremap gm :call GM() diff --git a/modules/darwin/default.nix b/modules/darwin/default.nix index 153c857..6ea9663 100644 --- a/modules/darwin/default.nix +++ b/modules/darwin/default.nix @@ -6,5 +6,6 @@ _: { ./gnupg.nix ./homebrew.nix ./profiles + ./vim ]; } diff --git a/modules/darwin/profiles/headful.nix b/modules/darwin/profiles/headful.nix index 2a4c773..c50c657 100644 --- a/modules/darwin/profiles/headful.nix +++ b/modules/darwin/profiles/headful.nix @@ -1,6 +1,7 @@ { config, lib, + pkgs, ... }: with lib; let @@ -9,6 +10,14 @@ in { config = mkIf cfg.enable { nixfiles.modules.homebrew.enable = true; + hm.home.packages = with pkgs; [ + coreutils + findutils + gnugrep + gnused + gnutar + ]; + homebrew.casks = [ {name = "chromium";} {name = "firefox";} diff --git a/modules/darwin/vim/default.nix b/modules/darwin/vim/default.nix new file mode 100644 index 0000000..519f120 --- /dev/null +++ b/modules/darwin/vim/default.nix @@ -0,0 +1,26 @@ +{ + config, + lib, + pkgs, + ... +}: +with lib; let + cfg = config.nixfiles.modules.vim; +in { + config = mkIf cfg.enable { + programs.vim.package = + (pkgs.macvim.overrideAttrs (_: final: { + # TODO https://github.com/NixOS/nixpkgs/pull/239842 + configureFlags = + final.configureFlags + ++ [ + "--disable-perlinterp" + "--disable-rubyinterp" + ]; + })) + .configure (with cfg; { + customRC = rc; + packages.myVimPackage.start = plugins; + }); + }; +} diff --git a/modules/nixos/default.nix b/modules/nixos/default.nix index f8347cf..466e2e0 100644 --- a/modules/nixos/default.nix +++ b/modules/nixos/default.nix @@ -62,6 +62,7 @@ _: { ./throttled.nix ./unbound.nix ./vaultwarden.nix + ./vim ./wireguard.nix ./x11.nix ./xmonad.nix diff --git a/modules/nixos/ntfy.nix b/modules/nixos/ntfy.nix index edbe7e5..1682b7e 100644 --- a/modules/nixos/ntfy.nix +++ b/modules/nixos/ntfy.nix @@ -64,20 +64,11 @@ in { settings = { listen-http = "127.0.0.1:${toString cfg.port}"; base-url = "https://${cfg.domain}"; - cache-file = "/var/cache/ntfy/cache.db"; behind-proxy = true; - attachment-cache-dir = "/var/cache/ntfy/attachments"; - auth-file = "/var/lib/ntfy/user.db"; enable-metrics = cfg.prometheus.enable; metrics-listen-http = with cfg.prometheus; optionalString cfg.prometheus.enable "${address}:${toString port}"; }; }; - - systemd.tmpfiles.rules = with config.services.ntfy-sh; [ - "d /var/lib/ntfy 0700 ${user} ${group} - -" - "d /var/cache/ntfy 0700 ${user} ${group} - -" - "d /var/cache/ntfy/attachments 0700 ${user} ${group} - -" - ]; }; } diff --git a/modules/nixos/vim/default.nix b/modules/nixos/vim/default.nix new file mode 100644 index 0000000..16e2d51 --- /dev/null +++ b/modules/nixos/vim/default.nix @@ -0,0 +1,39 @@ +{ + config, + lib, + pkgs, + this, + ... +}: +with lib; let + cfg = config.nixfiles.modules.vim; +in { + config = mkIf cfg.enable { + programs.vim.package = + (pkgs.vim-full.override { + features = "normal"; + cscopeSupport = false; + darwinSupport = false; + guiSupport = + if this.isHeadful + then "gtk3" + else false; + luaSupport = false; + multibyteSupport = false; + netbeansSupport = false; + nlsSupport = false; + perlSupport = false; + pythonSupport = false; + rubySupport = false; + tclSupport = false; + ximSupport = false; + }) + .customize { + name = "vim"; + vimrcConfig = with cfg; { + customRC = rc; + packages.myVimPackage.start = plugins; + }; + }; + }; +} -- cgit 1.4.1