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

@ -12,9 +12,9 @@ in
{
imports = [
# who are you?
./bolt.nix
# ./bolt.nix
# ./fossil.nix
# ./plank.nix
./plank.nix
];
nixpkgs.config.packageOverrides = pkgs: {
@ -29,7 +29,7 @@ in
thunderbird
clementine
inkscape
# inkscape
btop
bat
@ -56,7 +56,7 @@ in
libsForQt5.qtstyleplugin-kvantum
libsForQt5.bismuth
hackneyed
# hackneyed
gtk-engine-murrine

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'';
};
};
}