plasma manager to turn down monitor edge hardness

This commit is contained in:
Dea 2026-01-21 23:16:23 -05:00
parent 2df841a1fe
commit 46338aa7f0
4 changed files with 38 additions and 1 deletions

View file

@ -163,6 +163,7 @@
ffmpeg-full
yt-dlp
qbittorrent
bottles # windows emulation

26
flake.lock generated
View file

@ -52,11 +52,35 @@
"type": "github"
}
},
"plasma-manager": {
"inputs": {
"home-manager": [
"home-manager"
],
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1767662275,
"narHash": "sha256-d5Q1GmQ+sW1Bt8cgDE0vOihzLaswsm8cSdg8124EqXE=",
"owner": "nix-community",
"repo": "plasma-manager",
"rev": "51816be33a1ff0d4b22427de83222d5bfa96d30e",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "plasma-manager",
"type": "github"
}
},
"root": {
"inputs": {
"home-manager": "home-manager",
"nix-flatpak": "nix-flatpak",
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs",
"plasma-manager": "plasma-manager"
}
}
},

View file

@ -6,6 +6,11 @@
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
};
outputs =

View file

@ -1,6 +1,7 @@
{
lib,
pkgs,
inputs,
...
}:
@ -39,6 +40,7 @@
imports = [
./homemanager/mpv.nix
./hosts/sandalphon/mcsr/home.nix
inputs.plasma-manager.homeModules.plasma-manager
];
# dconf.settings = {};
@ -70,5 +72,10 @@
# };
# };
programs.plasma = {
enable = true;
kwin.edgeBarrier = 50;
};
programs.home-manager.enable = true;
}