Install Kdenlive on Morty

This commit is contained in:
Yorick Barbanneau 2023-09-22 22:18:08 +02:00
parent a50e1d1835
commit 5a4d7212ee

View file

@ -1,4 +1,5 @@
_: { {pkgs, ... }:
{
home.file.".xkb/symbols/gpdwinmax".text = '' home.file.".xkb/symbols/gpdwinmax".text = ''
default partial alphanumeric_keys default partial alphanumeric_keys
xkb_symbols "us-intl-winmax" { xkb_symbols "us-intl-winmax" {
@ -10,7 +11,7 @@ xkb_symbols "us-intl-winmax" {
}; };
''; '';
wayland.windowManager.sway.config.input = { wayland.windowManager.sway.config.input = {
"1:1:AT_Translated_Set_2_keyboard" = { "1:1:AT_Translated_Set_2_keyboard" = {
xkb_layout = "gpdwinmax"; xkb_layout = "gpdwinmax";
}; };
@ -22,9 +23,17 @@ xkb_symbols "us-intl-winmax" {
"pointer_accel" = "0.3"; "pointer_accel" = "0.3";
}; };
}; };
wayland.windowManager.sway.config.output = { wayland.windowManager.sway.config.output = {
"eDP-1" = { "eDP-1" = {
transform = "90"; transform = "90";
}; };
}; };
home.packages = with pkgs; [
kdenlive
];
imports = [
../qutebrowser
];
} }