Compare commits

..

No commits in common. "f902d250119875afef091314dfa0711f6109ec4c" and "34680966eb2f7c3de63f7457987a022d4b9afd13" have entirely different histories.

6 changed files with 11 additions and 111 deletions

View file

@ -1,25 +1,12 @@
{ ... }:
{ config, lib, ... }:
{
imports = [
./personal.nix
./desktop/plasma/default.nix
];
programs.plasma = {
input.touchpads = [
{
disableWhileTyping = true;
enable = true;
leftHanded = false;
middleMouseEmulation = true;
name = "SYNA32AA:00 06CB:CE17 Touchpad";
naturalScroll = true;
productId = "52759";
tapToClick = true;
vendorId = "1739";
}
];
programs.plasma = lib.mkIf config.programs.plasma.enable {
configFile = {
bluedevilglobalrc.Global.launchState.value = "disable";
kcminputrc."Libinput/1739/52759/SYNA32AA:00 06CB:CE17 Touchpad".NaturalScroll = true;
};
};
}

View file

@ -1,25 +1,12 @@
{ ... }:
{ config, lib, ... }:
{
imports = [
./work.nix
./desktop/plasma/default.nix
];
programs.plasma = {
input.touchpads = [
{
disableWhileTyping = true;
enable = true;
leftHanded = false;
middleMouseEmulation = true;
name = "DELL0A21:00 0488:1024 Touchpad";
naturalScroll = true;
productId = "4132";
tapToClick = true;
vendorId = "1160";
}
];
programs.plasma = lib.mkIf config.programs.plasma.enable {
configFile = {
bluedevilglobalrc.Global.launchState.value = "disable";
kcminputrc."Libinput/1160/4132/DELL0A21:00 0488:1024 Touchpad".NaturalScroll = true;
};
};
}

View file

@ -6,11 +6,6 @@
./streaming/default.nix
./desktop/plasma/default.nix
];
programs.plasma = {
configFile = {
bluedevilglobalrc.Global.launchState.value = "enable";
};
};
xdg.configFile = {
"autostart/signal-desktop.desktop".source = "${pkgs.signal-desktop}/share/applications/signal-desktop.desktop";
"autostart/com.github.eneshecan.WhatsAppForLinux.desktop".source = "${pkgs.whatsapp-for-linux}/share/applications/com.github.eneshecan.WhatsAppForLinux.desktop";

View file

@ -31,18 +31,13 @@
"tags": ["Software", "Documentation", "Ni"]
},
{
"name": "Home Manager",
"url": "https://nix-community.github.io/home-manager/options.xhtml",
"name": "NixOS and Flakes",
"url": "https://nixos-and-flakes.thiscute.world/",
"tags": ["Software", "Documentation", "Nix"]
},
{
"name": "Plasma Manager",
"url": "https://nix-community.github.io/plasma-manager/",
"tags": ["Software", "Documentation", "Nix", "KDE", "Plasma"]
},
{
"name": "NixOS and Flakes",
"url": "https://nixos-and-flakes.thiscute.world/",
"name": "Home Manager",
"url": "https://nix-community.github.io/home-manager/options.xhtml",
"tags": ["Software", "Documentation", "Nix"]
},
{

View file

@ -99,7 +99,6 @@
bookmarks = builtins.fromJSON (builtins.readFile ./bookmarks.json);
settings = {
"app.shield.optoutstudies.enabled" = false;
"browser.tabs.inTitlebar" = 0;
"browser.bookmarks.addedImportButton" = false;
"browser.bookmarks.showMobileBookmarks" = false;
"browser.toolbars.bookmarks.visibility" = "never";

View file

@ -201,63 +201,9 @@
};
};
powerdevil =
let
powerButtonAction = "showLogoutScreen";
autoSuspend.action = "sleep";
whenSleepingEnter = "standby";
whenLaptopLidClosed = "turnOffScreen";
in
{
AC = {
inherit powerButtonAction whenSleepingEnter whenLaptopLidClosed;
autoSuspend = {
inherit (autoSuspend) action;
idleTimeout = 7200;
};
dimDisplay = {
enable = true;
idleTimeOut = 300;
};
turnOffDisplay = {
idleTimeout = 1800;
idleTimeoutWhenLocked = 120;
};
};
battery = {
inherit powerButtonAction whenSleepingEnter whenLaptopLidClosed;
autoSuspend = {
inherit (autoSuspend) action;
idleTimeout = 1800;
};
dimDisplay = {
enable = true;
idleTimeOut = 120;
};
turnOffDisplay = {
idleTimeout = 900;
idleTimeoutWhenLocked = 60;
};
};
lowBattery = {
inherit powerButtonAction whenSleepingEnter whenLaptopLidClosed;
autoSuspend = {
inherit (autoSuspend) action;
idleTimeout = 900;
};
dimDisplay = {
enable = true;
idleTimeOut = 60;
};
turnOffDisplay = {
idleTimeout = 300;
idleTimeoutWhenLocked = "immediately";
};
};
};
configFile = {
baloofilerc."Basic Settings"."Indexing-Enabled" = false;
bluedevilglobalrc.Global.launchState.value = "enable";
kcminputrc.Keyboard.NumLock = 1;
plasmanotifyrc = {
Notifications = {
@ -340,7 +286,6 @@
};
Windows = {
FocusPolicy = "FocusFollowsMouse";
DelayFocusInterval = 0;
RollOverDesktops = true;
};
NightColor = {
@ -362,14 +307,6 @@
BorderSize = "None";
BorderSizeAuto = "false";
};
"Script-krohnkite" = {
limitTileWidth = true;
screenGapBottom = 5;
screenGapLeft = 5;
screenGapRight = 5;
screenGapTop = 5;
tileLayoutGap = 5;
};
};
};
};