overheating: add patched ssdt

This commit is contained in:
DashieTM 2024-05-21 18:23:59 +02:00
parent 5c0e020043
commit e536387ffe
9 changed files with 55 additions and 9 deletions

View file

@ -8,7 +8,7 @@
home.packages = with pkgs; [
#basics
git
gitui
gcc
meson
ninja

View file

@ -30,7 +30,8 @@
"$mod SUPER,G,exec,oxicalc"
"$mod SUPER,D,exec,oxishut"
"$mod SUPER,A,exec,oxipaste"
"$mod SUPERSHIFT,L,exec, playerctl -a pause & hyprlock & systemctl hibernate"
"$mod SUPERSHIFT,L,exec, playerctl -a pause & hyprlock & systemctl suspend"
"$mod SUPERSHIFT,K,exec, playerctl -a pause & hyprlock & systemctl hibernate"
# media keys
",XF86AudioMute,exec, $HOME/.config/scripts/audio_control.sh mute"

View file

@ -6,5 +6,6 @@
./ncspot.nix
./ssh.nix
./direnv.nix
./git.nix
];
}

View file

@ -0,0 +1,16 @@
{
programs.git = {
enable = true;
userName = "DashieTM";
userEmail = "fabio.lenherr@gmail.com";
extraConfig = {
merge = {
tool = "nvimdiff";
};
diff = {
tool = "nvimdiff";
};
};
};
}

View file

@ -273,4 +273,11 @@ return {
{ "<leader>fy", "<cmd>Yazi<CR>", desc = "Toggle Yazi" },
},
},
{
"sindrets/diffview.nvim",
keys = {
{ "<leader>gd", "<cmd>DiffviewOpen<CR>", desc = "Toggle Difftool" },
},
},
{ "akinsho/git-conflict.nvim", version = "*", config = true },
}