configurations for my servers and desktops
nix nixos flake dots dotfiles

chore: various user changes

+16 -32
-7
hosts/d-macbook/default.nix
··· 42 42 "visual-studio-code" 43 43 ]; 44 44 }; 45 - 46 - environment.systemPackages = with pkgs; [ 47 - xz 48 - rsync 49 - cinny-desktop 50 - qutebrowser 51 - ]; 52 45 }
+16
modules/users/programs/jujutsu.nix
··· 1 + {pkgs, ...}: { 2 + home.packages = with pkgs; [ 3 + jujutsu 4 + lazyjj 5 + ]; 6 + 7 + programs.jujutsu = { 8 + enable = true; 9 + settings = { 10 + user = { 11 + name = "intergrav"; 12 + email = "devin@devins.page"; 13 + }; 14 + }; 15 + }; 16 + }
-25
modules/users/programs/neovim.nix
··· 1 1 {pkgs, ...}: { 2 - home.packages = with pkgs; [ 3 - ripgrep 4 - ]; 5 - 6 2 programs.neovim = { 7 3 enable = true; 8 4 viAlias = true; 9 5 vimAlias = true; 10 6 defaultEditor = true; 11 - plugins = with pkgs.vimPlugins; [ 12 - nvim-lspconfig 13 - 14 - nvim-treesitter 15 - nvim-treesitter.withAllGrammars 16 - 17 - telescope-nvim 18 - plenary-nvim 19 - telescope-fzf-native-nvim 20 - 21 - nvim-cmp 22 - luasnip 23 - cmp_luasnip 24 - 25 - nvim-tree-lua 26 - 27 - lazygit-nvim 28 - ]; 29 7 extraLuaConfig = '' 30 - vim.g.loaded_netrw = 1 31 - vim.g.loaded_netrwPlugin = 1 32 8 vim.opt.cmdheight = 0 33 - require("nvim-tree").setup() 34 9 ''; 35 10 }; 36 11 }