add some font stuff for plasma and make shodan not need a password to unlock kscreenlock
This commit is contained in:
parent
1efc4f1940
commit
642bf45609
|
@ -13,6 +13,33 @@
|
||||||
programs.plasma = {
|
programs.plasma = {
|
||||||
enable = true;
|
enable = true;
|
||||||
desktop.mouseActions.verticalScroll = "switchVirtualDesktop";
|
desktop.mouseActions.verticalScroll = "switchVirtualDesktop";
|
||||||
|
kscreenlocker.appearance.wallpaper = "${osConfig.stylix.image}";
|
||||||
|
fonts = {
|
||||||
|
fixedWidth = {
|
||||||
|
pointSize = 11;
|
||||||
|
family = "${osConfig.stylix.fonts.monospace.name}";
|
||||||
|
};
|
||||||
|
general = {
|
||||||
|
pointSize = 11;
|
||||||
|
family = "${osConfig.stylix.fonts.serif.name}";
|
||||||
|
};
|
||||||
|
menu = {
|
||||||
|
pointSize = 11;
|
||||||
|
family = "${osConfig.stylix.fonts.sansSerif.name}";
|
||||||
|
};
|
||||||
|
small = {
|
||||||
|
pointSize = 11;
|
||||||
|
family = "${osConfig.stylix.fonts.sansSerif.name}";
|
||||||
|
};
|
||||||
|
toolbar = {
|
||||||
|
pointSize = 11;
|
||||||
|
family = "${osConfig.stylix.fonts.sansSerif.name}";
|
||||||
|
};
|
||||||
|
windowTitle = {
|
||||||
|
pointSize = 11;
|
||||||
|
family = "${osConfig.stylix.fonts.sansSerif.name}";
|
||||||
|
};
|
||||||
|
};
|
||||||
panels = [
|
panels = [
|
||||||
{
|
{
|
||||||
alignment = "left";
|
alignment = "left";
|
||||||
|
@ -95,13 +122,13 @@
|
||||||
"applications:org.kde.dolphin.desktop"
|
"applications:org.kde.dolphin.desktop"
|
||||||
"applications:signal-desktop.desktop"
|
"applications:signal-desktop.desktop"
|
||||||
"applications:vesktop.desktop"
|
"applications:vesktop.desktop"
|
||||||
|
"applications:thunderbird.desktop"
|
||||||
"applications:cinny.desktop"
|
"applications:cinny.desktop"
|
||||||
"applications:steam.desktop"
|
"applications:steam.desktop"
|
||||||
"applications:noisetorch.desktop"
|
"applications:noisetorch.desktop"
|
||||||
"applications:org.kde.plasma-systemmonitor.desktop"
|
"applications:org.kde.plasma-systemmonitor.desktop"
|
||||||
"applications:foot.desktop"
|
"applications:foot.desktop"
|
||||||
"applications:nitrokey-app.desktop"
|
"applications:nitrokey-app.desktop"
|
||||||
"applications:codium.desktop"
|
|
||||||
"applications:freetube.desktop"
|
"applications:freetube.desktop"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -106,6 +106,9 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Make the kde screenlock not require a password :)
|
||||||
|
programs.plasma.kscreenlocker.passwordRequired = false;
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
home.stateVersion = "25.05";
|
home.stateVersion = "25.05";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue