kanagawa and bluetooth

This commit is contained in:
Michael Thomson 2024-09-20 17:20:46 -04:00
parent cce2a5ec22
commit 53ed98e6c3
No known key found for this signature in database
GPG Key ID: 8EFECCD347C72F7D
8 changed files with 45 additions and 9 deletions

View File

@ -8,6 +8,7 @@
../../modules/nixos/bootloader.nix
../../modules/nixos/user.nix
../../modules/nixos/ssh.nix
../../modules/nixos/bluetooth.nix
../../modules/nixos/nvidia.nix
../../modules/nixos/i3.nix
../../modules/nixos/nm.nix

View File

@ -28,6 +28,8 @@
};
};
services.blueman-applet.enable = true;
home.packages = with pkgs; [
firefox
gcc

View File

@ -254,3 +254,5 @@ exec_always --no-startup-id dunst
exec_always --no-startup-id pasystray
exec_always --no-startup-id syncthing
exec_always --no-startup-id blueman-applet

View File

@ -0,0 +1,6 @@
return {
"rebelot/kanagawa.nvim",
config = function ()
vim.cmd.colorscheme "kanagawa"
end
}

View File

@ -99,13 +99,13 @@ return { -- Collection of various small independent plugins/modules
-- }
-- })
--
require('mini.hues').setup({
foreground = '#ffffff',
background = '#000000',
n_hues = 0,
accent = 'orange',
saturation = 'high'
})
-- require('mini.hues').setup({
-- foreground = '#ffffff',
-- background = '#000000',
-- n_hues = 0,
-- accent = 'orange',
-- saturation = 'high'
-- })
require('mini.splitjoin').setup()

View File

@ -5,7 +5,7 @@
enable = true;
extraConfig = ''
return {
color_scheme = 'Ayu Dark (Gogh)',
-- color_scheme = 'Ayu Dark (Gogh)',
font = wezterm.font('Iosevka Nerd Font'),
font_size = 16,
use_fancy_tab_bar = false,
@ -30,6 +30,25 @@
window_background_opacity = 1,
macos_window_background_blur = 0,
front_end = "WebGpu",
force_reverse_video_cursor = true,
colors = {
foreground = "#dcd7ba",
background = "#1f1f28",
cursor_bg = "#c8c093",
cursor_fg = "#c8c093",
cursor_border = "#c8c093",
selection_fg = "#c8c093",
selection_bg = "#2d4f67",
scrollbar_thumb = "#16161d",
split = "#16161d",
ansi = { "#090618", "#c34043", "#76946a", "#c0a36e", "#7e9cd8", "#957fb8", "#6a9589", "#c8c093" },
brights = { "#727169", "#e82424", "#98bb6c", "#e6c384", "#7fb4ca", "#938aa9", "#7aa89f", "#dcd7ba" },
indexed = { [16] = "#ffa066", [17] = "#ff5d62" },
},
}
'';
};

View File

@ -0,0 +1,6 @@
{
hardware.bluetooth.enable = true; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
services.blueman.enable = true;
}