kanagawa and bluetooth
This commit is contained in:
parent
cce2a5ec22
commit
53ed98e6c3
@ -8,6 +8,7 @@
|
|||||||
../../modules/nixos/bootloader.nix
|
../../modules/nixos/bootloader.nix
|
||||||
../../modules/nixos/user.nix
|
../../modules/nixos/user.nix
|
||||||
../../modules/nixos/ssh.nix
|
../../modules/nixos/ssh.nix
|
||||||
|
../../modules/nixos/bluetooth.nix
|
||||||
../../modules/nixos/nvidia.nix
|
../../modules/nixos/nvidia.nix
|
||||||
../../modules/nixos/i3.nix
|
../../modules/nixos/i3.nix
|
||||||
../../modules/nixos/nm.nix
|
../../modules/nixos/nm.nix
|
||||||
|
@ -28,6 +28,8 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.blueman-applet.enable = true;
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
gcc
|
gcc
|
||||||
|
@ -254,3 +254,5 @@ exec_always --no-startup-id dunst
|
|||||||
exec_always --no-startup-id pasystray
|
exec_always --no-startup-id pasystray
|
||||||
|
|
||||||
exec_always --no-startup-id syncthing
|
exec_always --no-startup-id syncthing
|
||||||
|
|
||||||
|
exec_always --no-startup-id blueman-applet
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
return {
|
||||||
|
"rebelot/kanagawa.nvim",
|
||||||
|
config = function ()
|
||||||
|
vim.cmd.colorscheme "kanagawa"
|
||||||
|
end
|
||||||
|
}
|
@ -99,13 +99,13 @@ return { -- Collection of various small independent plugins/modules
|
|||||||
-- }
|
-- }
|
||||||
-- })
|
-- })
|
||||||
--
|
--
|
||||||
require('mini.hues').setup({
|
-- require('mini.hues').setup({
|
||||||
foreground = '#ffffff',
|
-- foreground = '#ffffff',
|
||||||
background = '#000000',
|
-- background = '#000000',
|
||||||
n_hues = 0,
|
-- n_hues = 0,
|
||||||
accent = 'orange',
|
-- accent = 'orange',
|
||||||
saturation = 'high'
|
-- saturation = 'high'
|
||||||
})
|
-- })
|
||||||
|
|
||||||
require('mini.splitjoin').setup()
|
require('mini.splitjoin').setup()
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
return {
|
return {
|
||||||
color_scheme = 'Ayu Dark (Gogh)',
|
-- color_scheme = 'Ayu Dark (Gogh)',
|
||||||
font = wezterm.font('Iosevka Nerd Font'),
|
font = wezterm.font('Iosevka Nerd Font'),
|
||||||
font_size = 16,
|
font_size = 16,
|
||||||
use_fancy_tab_bar = false,
|
use_fancy_tab_bar = false,
|
||||||
@ -30,6 +30,25 @@
|
|||||||
window_background_opacity = 1,
|
window_background_opacity = 1,
|
||||||
macos_window_background_blur = 0,
|
macos_window_background_blur = 0,
|
||||||
front_end = "WebGpu",
|
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" },
|
||||||
|
},
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
6
modules/nixos/bluetooth.nix
Normal file
6
modules/nixos/bluetooth.nix
Normal 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;
|
||||||
|
}
|
||||||
|
|
@ -3,7 +3,7 @@
|
|||||||
{
|
{
|
||||||
environment.pathsToLink = [ "/libexec" ];
|
environment.pathsToLink = [ "/libexec" ];
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user