mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
rollbacks and small changes
This commit is contained in:
parent
80e73feb8f
commit
290967a53f
3 changed files with 14 additions and 2 deletions
|
@ -10,8 +10,8 @@
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" "v4l2loopback" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ config.boot.kernelPackages.v4l2loopback ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-label/nixos";
|
{ device = "/dev/disk/by-label/nixos";
|
||||||
|
|
|
@ -32,6 +32,8 @@ in
|
||||||
# Whether to enable hyprland-session.target on hyprland startup
|
# Whether to enable hyprland-session.target on hyprland startup
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
|
|
||||||
|
# Whether to enable patching wlroots for better Nvidia support
|
||||||
|
enableNvidiaPatches = true;
|
||||||
extraConfig = lib.strings.concatStrings [
|
extraConfig = lib.strings.concatStrings [
|
||||||
monitor_config
|
monitor_config
|
||||||
''
|
''
|
||||||
|
|
|
@ -125,6 +125,16 @@ in
|
||||||
key = "K";
|
key = "K";
|
||||||
action = ":m '<-2<CR>gv=gv";
|
action = ":m '<-2<CR>gv=gv";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
mode = "v";
|
||||||
|
key = ">";
|
||||||
|
action = ">gv";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = "v";
|
||||||
|
key = "<";
|
||||||
|
action = "<gv";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
# Yank selection to system clipboard
|
# Yank selection to system clipboard
|
||||||
mode = "v";
|
mode = "v";
|
||||||
|
|
Loading…
Reference in a new issue