A few changes

This commit is contained in:
rotterdam 2023-03-12 19:01:37 -03:00
parent 5e2d21e90e
commit db75061121
3 changed files with 7 additions and 5 deletions

View file

@ -12,7 +12,7 @@
lazydocker lazydocker
micro micro
neofetch neofetch
nix-your-shell # nix-your-shell # Currently only available in unstable
sysz sysz
tmux tmux
tree tree

View file

@ -7,7 +7,12 @@
supportedFilesystems = [ "ntfs" ]; supportedFilesystems = [ "ntfs" ];
loader.efi.efiSysMountPoint = "/boot/efi"; loader.efi.efiSysMountPoint = "/boot/efi";
kernelPackages = pkgs.linuxPackages_xanmod_latest; kernelPackages = pkgs.linuxPackages_xanmod_latest;
extraModprobeConfig = ''options bluetooth disable_ertm=1''; extraModprobeConfig = ''
options bluetooth disable_ertm=1
'';
kernel.sysctl = {
"net.ipv4.tcp_mtu_probing" = 1;
};
kernelParams = [ kernelParams = [
"quiet" "quiet"
"splash" "splash"

View file

@ -9,9 +9,6 @@
name = "breeze_cursors"; name = "breeze_cursors";
package = pkgs.breeze-icons; package = pkgs.breeze-icons;
}; };
packages = with pkgs; [
syncthingtray
];
file = { file = {
".config/wezterm/wezterm.lua".source = "${inputs.dotfiles}/.config/wezterm/wezterm.lua"; ".config/wezterm/wezterm.lua".source = "${inputs.dotfiles}/.config/wezterm/wezterm.lua";
".config/MangoHud/MangoHud.conf".source = "${inputs.dotfiles}/.config/MangoHud/MangoHud.conf"; ".config/MangoHud/MangoHud.conf".source = "${inputs.dotfiles}/.config/MangoHud/MangoHud.conf";