Merge branch 'master' of https://git.atagen.co/atagen/nix
This commit is contained in:
commit
a33f73c22f
4 changed files with 81 additions and 18 deletions
|
@ -12,9 +12,9 @@ in
|
|||
{
|
||||
imports = [
|
||||
# who are you?
|
||||
./bolt.nix
|
||||
# ./bolt.nix
|
||||
# ./fossil.nix
|
||||
# ./plank.nix
|
||||
./plank.nix
|
||||
];
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
|
@ -32,7 +32,7 @@ in
|
|||
thunderbird
|
||||
|
||||
clementine
|
||||
inkscape
|
||||
# inkscape
|
||||
|
||||
btop
|
||||
bat
|
||||
|
@ -59,7 +59,7 @@ in
|
|||
libsForQt5.qtstyleplugin-kvantum
|
||||
libsForQt5.bismuth
|
||||
|
||||
hackneyed
|
||||
# hackneyed
|
||||
|
||||
gtk-engine-murrine
|
||||
|
||||
|
|
|
@ -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'';
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue