clangd fix
This commit is contained in:
parent
fbf6c850c9
commit
35cef3a145
0
compile_commands.json
Normal file → Executable file
0
compile_commands.json
Normal file → Executable file
0
configuration.nix
Normal file → Executable file
0
configuration.nix
Normal file → Executable file
0
flake.lock
generated
Normal file → Executable file
0
flake.lock
generated
Normal file → Executable file
@ -1,45 +1,32 @@
|
|||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
modulesPath,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports =
|
||||||
(modulesPath + "/installer/scan/not-detected.nix")
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||||||
"xhci_pci"
|
|
||||||
"nvme"
|
|
||||||
"usb_storage"
|
|
||||||
"sd_mod"
|
|
||||||
"sdhci_pci"
|
|
||||||
];
|
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" =
|
||||||
device = "/dev/disk/by-uuid/c16b01ac-175e-4b33-b0e6-6e3324e5d3a7";
|
{ device = "/dev/disk/by-uuid/79902d1f-89b1-44d3-83b0-fb7e3081b729";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" =
|
||||||
device = "/dev/disk/by-uuid/FB24-02BA";
|
{ device = "/dev/disk/by-uuid/D839-722E";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
"fmask=0077"
|
};
|
||||||
"dmask=0077"
|
|
||||||
|
swapDevices =
|
||||||
|
[ { device = "/dev/disk/by-uuid/efdb9d57-daee-4fb5-82d3-84cf3820704f"; }
|
||||||
];
|
];
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices = [ ];
|
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
|
|||||||
0
home/home.nix
Normal file → Executable file
0
home/home.nix
Normal file → Executable file
8
home/hyprland.nix
Normal file → Executable file
8
home/hyprland.nix
Normal file → Executable file
@ -12,9 +12,9 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
decoration = {
|
decoration = {
|
||||||
rounding = 0;
|
rounding = 15;
|
||||||
blur = {
|
blur = {
|
||||||
enabled = false;
|
enabled = true;
|
||||||
size = 3;
|
size = 3;
|
||||||
passes = 2;
|
passes = 2;
|
||||||
ignore_opacity = 0;
|
ignore_opacity = 0;
|
||||||
@ -38,9 +38,9 @@
|
|||||||
"fadeIn, 1, 5, overshot"
|
"fadeIn, 1, 5, overshot"
|
||||||
"fadeOut, 1, 5, overshot"
|
"fadeOut, 1, 5, overshot"
|
||||||
"fadeDim, 1, 5, overshot"
|
"fadeDim, 1, 5, overshot"
|
||||||
"windows, 0, 1, smoothIn, gnomed"
|
"windows, 1, 1, smoothIn, popin"
|
||||||
"border, 1, 10, default"
|
"border, 1, 10, default"
|
||||||
"workspaces, 1, 6, overshot, fade"
|
"workspaces, 1, 6, overshot, slide"
|
||||||
"specialWorkspace, 1, 8, smoothOut, slidevert"
|
"specialWorkspace, 1, 8, smoothOut, slidevert"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
6
home/nixvim/coding.nix
Normal file → Executable file
6
home/nixvim/coding.nix
Normal file → Executable file
@ -12,8 +12,10 @@
|
|||||||
|
|
||||||
servers = {
|
servers = {
|
||||||
bashls.enable = true;
|
bashls.enable = true;
|
||||||
clangd.enable = true;
|
clangd = {
|
||||||
clangd.package = null;
|
package = null;
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
nixd.enable = true;
|
nixd.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
0
home/nixvim/keymaps.nix
Normal file → Executable file
0
home/nixvim/keymaps.nix
Normal file → Executable file
0
home/nixvim/nixvim.nix
Normal file → Executable file
0
home/nixvim/nixvim.nix
Normal file → Executable file
0
home/nixvim/plugins.nix
Normal file → Executable file
0
home/nixvim/plugins.nix
Normal file → Executable file
1
home/programs.nix
Normal file → Executable file
1
home/programs.nix
Normal file → Executable file
@ -20,7 +20,6 @@
|
|||||||
ripgrep
|
ripgrep
|
||||||
gnumake
|
gnumake
|
||||||
stlink
|
stlink
|
||||||
gcc-arm-embedded
|
|
||||||
];
|
];
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
0
home/stylix.nix
Normal file → Executable file
0
home/stylix.nix
Normal file → Executable file
0
home/wallpaper.png
Normal file → Executable file
0
home/wallpaper.png
Normal file → Executable file
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
0
home/waybar.nix
Normal file → Executable file
0
home/waybar.nix
Normal file → Executable file
2
stylix.nix
Normal file → Executable file
2
stylix.nix
Normal file → Executable file
@ -23,7 +23,7 @@
|
|||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoEnable = true;
|
autoEnable = true;
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-dark.yaml";
|
||||||
polarity = "dark";
|
polarity = "dark";
|
||||||
image = ./home/wallpaper.png;
|
image = ./home/wallpaper.png;
|
||||||
fonts = {
|
fonts = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user