reboot test once more

This commit is contained in:
Bryan Ramos 2023-06-07 14:59:34 -04:00
parent 9509987bce
commit 4d03d151f6
5 changed files with 11 additions and 12 deletions

View file

@ -11,7 +11,6 @@ in
programs.chromium.enable = true; programs.chromium.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
google-chrome
(tor-browser-bundle-bin.override { (tor-browser-bundle-bin.override {
useHardenedMalloc = false; # NixOS bug requires this useHardenedMalloc = false; # NixOS bug requires this
}) })

View file

@ -14,6 +14,7 @@ in
# ]; # ];
extraSessionCommands = '' extraSessionCommands = ''
exec alacritty -e sh -c 'neofetch; exec $SHELL'
export _JAVA_AWT_WM_NONREPARENTING=1 export _JAVA_AWT_WM_NONREPARENTING=1
''; '';

View file

@ -1,6 +1,12 @@
-- Autocmds are automatically loaded on the VeryLazy event -- Autocmds are automatically loaded on the VeryLazy event
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua -- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
-- Add any additional autocmds here -- Add any additional autocmds here
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.softtabstop = 2
vim.opt.expandtab = true
local lsp = require("lsp-zero").preset({}) local lsp = require("lsp-zero").preset({})
lsp.on_attach(function(client, bufnr) lsp.on_attach(function(client, bufnr)

View file

@ -1,8 +1,3 @@
-- Options are automatically loaded before lazy.nvim startup -- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here -- Add any additional options here
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.softtabstop = 2
vim.opt.expandtab = true

View file

@ -2,13 +2,11 @@
let let
lsp = with pkgs; [ lsp = with pkgs; [
nil nil nixfmt
nixfmt
marksman marksman
sumneko-lua-language-server sumneko-lua-language-server stylua
stylua haskell-language-server hlint
haskell-language-server nodePackages."@tailwindcss/language-server"
hlint
]; ];
lsp' = with pkgs.nodePackages; [ lsp' = with pkgs.nodePackages; [