diff --git a/boxes/xps.nix b/boxes/xps.nix index 3e3912c..31d98fa 100644 --- a/boxes/xps.nix +++ b/boxes/xps.nix @@ -10,6 +10,9 @@ gnome.cheese musescore libsForQt5.kdenlive + xdotool + texlive.combined.scheme-full + zathura ]; services.tlp.enable = true; @@ -17,5 +20,7 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + networking.nameservers = [ "1.1.1.1" "9.9.9.9" ]; + networking.hostName = "xps"; } diff --git a/common/desktop.nix b/common/desktop.nix index ed86b22..1a32ac2 100644 --- a/common/desktop.nix +++ b/common/desktop.nix @@ -62,6 +62,7 @@ in { pinentry-curses magic-wormhole xbrightness + figlet unzip lua-language-server diff --git a/config/nvim/init.lua b/config/nvim/init.lua index 9462dfc..8b4f7f2 100644 --- a/config/nvim/init.lua +++ b/config/nvim/init.lua @@ -169,6 +169,8 @@ local packer = require('packer').startup(function(use) use 'L3MON4D3/LuaSnip' use 'https://github.com/vimwiki/vimwiki.git' use 'lervag/vimtex' + use 'https://github.com/protex/better-digraphs.nvim' + use 'https://github.com/itchyny/calendar.vim' use { "folke/which-key.nvim", config = function() @@ -210,4 +212,8 @@ nnoremap('ff', function() require('telescope.builtin').find_files() end) +inoremap('', function() + require('better-digraphs').digraphs("insert") +end) + return packer