overheating: add patched ssdt
This commit is contained in:
parent
5c0e020043
commit
e536387ffe
9 changed files with 55 additions and 9 deletions
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
home.packages = with pkgs; [
|
||||
#basics
|
||||
git
|
||||
gitui
|
||||
gcc
|
||||
meson
|
||||
ninja
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -6,5 +6,6 @@
|
|||
./ncspot.nix
|
||||
./ssh.nix
|
||||
./direnv.nix
|
||||
./git.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
16
nix/programs/individual_configs/git.nix
Normal file
16
nix/programs/individual_configs/git.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "DashieTM";
|
||||
userEmail = "fabio.lenherr@gmail.com";
|
||||
extraConfig = {
|
||||
merge = {
|
||||
tool = "nvimdiff";
|
||||
};
|
||||
diff = {
|
||||
tool = "nvimdiff";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -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 },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue