Generalize more boot whatever
This commit is contained in:
parent
e2b093a0bb
commit
c16bdf2280
|
@ -1,7 +1,4 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
boot = {
|
||||
kernelPackages = pkgs.unstable.linuxPackages_latest;
|
||||
blacklistedKernelModules = [ "pcspkr" ];
|
||||
};
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
home-manager.users.jimbo = {
|
||||
home.stateVersion = "24.11";
|
||||
home.stateVersion = lib.mkForce "24.11";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -18,7 +18,6 @@ in {
|
|||
# Must be Zen for IOMMU isolation
|
||||
kernelPackages = pkgs.unstable.linuxPackages_zen;
|
||||
kernelParams = commonKernelParams ++ [ "vfio-pci.ids=10de:1f82,10de:10fa" ];
|
||||
blacklistedKernelModules = [ "pcspkr" ];
|
||||
|
||||
# Enable cross-compilation
|
||||
binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
|
|
|
@ -1,83 +0,0 @@
|
|||
# Sway Superdow Manager Hotkeys
|
||||
|
||||
## Application Launchers
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Super + F1 | Launch **LibreWolf** (Jim profile) |
|
||||
| Super + F2 | Launch **LibreWolf** (Alt profile) |
|
||||
| Super + F3 | Launch **LibreWolf** (Misc profile) |
|
||||
| Super + F4 | Launch **Virt-Manager** |
|
||||
| Super + F5 | Launch **Looking Glass** |
|
||||
|
||||
## Superdow Management
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Super + Arrows | Focus in the specified direction |
|
||||
| Super + Shift + Arrows | Move window in the specified direction |
|
||||
| Super + Shift + Space | Toggle window floating |
|
||||
| Super + Space | Switch focus between floating/tiled |
|
||||
| Super + Shift + 1-9 | Move window to a workspace and focus |
|
||||
| Super + 1-9 | Switch to specified workspace |
|
||||
| Super + 0 | Pin window and toggle border |
|
||||
| Super + F | Toggle fullscreen |
|
||||
| Super + Shift + R | Reload configuration |
|
||||
| Super + Q | Close the current window |
|
||||
|
||||
## Layout Management
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Super + W | Toggle split layout |
|
||||
| Super + E | Toggle tabbed/stacking layout |
|
||||
| Super + H/V | Split window horizontally/vertically |
|
||||
| Super + A/D | Focus parent/child container |
|
||||
|
||||
## Volume and Media Controls
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Alt + J | Lower system volume |
|
||||
| Alt + K | Raise system volume |
|
||||
| Alt + M | Mute/unmute audio |
|
||||
| Super + Backslash | Toggle media playback |
|
||||
| Alt + Shift + H | Skip to the next track |
|
||||
| Alt + Shift + L | Go to the previous track |
|
||||
|
||||
## Screenshot and Brightness Controls
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Alt + F | Take a screenshot |
|
||||
| Alt + Shift + F | Screenshot of the current screen |
|
||||
| Alt + Ctrl + F | Screenshot of the current window |
|
||||
| Super + = | Brightness up |
|
||||
| Super + - | Brightness down |
|
||||
|
||||
## Scratchpads
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Super + Shift + Backslash | Open **Btop** (monitoring) |
|
||||
| Super + Shift + M | Open **Music** scratchpad |
|
||||
| Super + Shift + V | Open **Sound Settings** scratchpad |
|
||||
|
||||
## Special Sway Tools
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Super + Escape | **Kill** selected window |
|
||||
| Super + Ctrl + X | **Inspect** window properties |
|
||||
|
||||
## Miscellaneous
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Super + Return | Open **Foot terminal** |
|
||||
| Super + S | Open **Rofi** (run commands) |
|
||||
| Super + C | Open **Clipman** (clipboard manager) |
|
||||
| Super + X | Open **Power Menu** |
|
||||
| Super + B | Toggle **Waybar** |
|
||||
| Super + Ctrl + S | Open **Rofi Scratchpads** |
|
||||
| Super + Ctrl + X | Open **Rofi Power Menu** |
|
||||
|
||||
## Workspaces
|
||||
| Key Combination | Action |
|
||||
|----------------------------|----------------------------------------|
|
||||
| Super + 1-9 | Switch to workspace |
|
||||
| Super + Shift + 1-9 | Move window to workspace and focus |
|
||||
| Alt + F1-F9 | Switch to alternate workspace |
|
||||
| Alt + Shift + F1-F9 | Move window to alt workspace and focus |
|
|
@ -6,8 +6,11 @@
|
|||
./systemd
|
||||
];
|
||||
|
||||
boot.kernel.sysctl = {
|
||||
"vm.max_map_count" = 2147483642;
|
||||
"kernel.sysrq" = 1;
|
||||
boot = {
|
||||
blacklistedKernelModules = [ "pcspkr" ];
|
||||
kernel.sysctl = {
|
||||
"vm.max_map_count" = 2147483642;
|
||||
"kernel.sysrq" = 1;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue