minor laptop bump

This commit is contained in:
atagen 2023-02-17 12:54:14 +11:00
parent 428e9731e9
commit ac9af6dd58
4 changed files with 81 additions and 18 deletions

View file

@ -1,8 +1,31 @@
{ config, pkgs, ... }:
{
nixpkgs.overlays = [
(self: super: {
kwin-system76-scheduler-integration = pkgs.libsForQt5.callPackage ../system/syspkgs/kwin-system76-scheduler-integration.nix {};
})
];
home.username = "plank";
home.homeDirectory = "/home/plank";
systemd.user.startServices = true;
systemd.user.services."com.system76.Scheduler.dbusproxy" = {
Unit = {
Description = "the system76 process scheduler kwin dbus proxy";
Requires = [ "dbus.service" ];
};
Install = {
WantedBy = [ "graphical-session.target" "default.target" ];
};
Service = {
ExecStart = ''${pkgs.kwin-system76-scheduler-integration}/bin/kwin-system76-scheduler-dbus-proxy.sh'';
};
};
}