changes to nvim and kde
This commit is contained in:
parent
c2ab4f76cc
commit
b977829277
3 changed files with 41 additions and 1 deletions
|
|
@ -1,3 +1,5 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.plasma = {
|
programs.plasma = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -71,6 +73,34 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
description = "Minecraft";
|
||||||
|
match = {
|
||||||
|
window-class = {
|
||||||
|
value = "Minecraft*";
|
||||||
|
type = "substring";
|
||||||
|
};
|
||||||
|
window-types = [ "normal" ];
|
||||||
|
};
|
||||||
|
apply = {
|
||||||
|
noborder = {
|
||||||
|
value = true;
|
||||||
|
apply = "force";
|
||||||
|
};
|
||||||
|
maximizehoriz = {
|
||||||
|
value = true;
|
||||||
|
apply = "force";
|
||||||
|
};
|
||||||
|
maximizevert = {
|
||||||
|
value = true;
|
||||||
|
apply = "force";
|
||||||
|
};
|
||||||
|
desktops = {
|
||||||
|
value = "Desktop_4";
|
||||||
|
apply = "force";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
{
|
{
|
||||||
description = "Picture-in-Picture";
|
description = "Picture-in-Picture";
|
||||||
match = {
|
match = {
|
||||||
|
|
@ -219,7 +249,7 @@
|
||||||
{
|
{
|
||||||
iconTasks = {
|
iconTasks = {
|
||||||
launchers = [
|
launchers = [
|
||||||
# "applications:firefox.desktop"
|
"applications:firefox.desktop"
|
||||||
"applications:helium.desktop"
|
"applications:helium.desktop"
|
||||||
"applications:org.kde.dolphin.desktop"
|
"applications:org.kde.dolphin.desktop"
|
||||||
"applications:vesktop.desktop"
|
"applications:vesktop.desktop"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
enablePrintInit = true;
|
||||||
# defaultEditor = true;
|
# defaultEditor = true;
|
||||||
waylandSupport = true;
|
waylandSupport = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,7 @@
|
||||||
environment.sessionVariables = rec {
|
environment.sessionVariables = rec {
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
|
TERMINAL = "kitty";
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
|
@ -157,6 +158,12 @@
|
||||||
firefoxpwa
|
firefoxpwa
|
||||||
distrobox
|
distrobox
|
||||||
];
|
];
|
||||||
|
|
||||||
|
plasma6.excludePackages = with pkgs.kdePackages; [
|
||||||
|
elisa
|
||||||
|
konsole
|
||||||
|
khelpcenter
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue