fixe spacenavd, new wallpaper

This commit is contained in:
Schrottkatze 2023-03-20 23:40:08 +01:00
parent 1d2c6bb0f0
commit 25c81ef9e8
7 changed files with 35 additions and 17 deletions

View file

@ -0,0 +1,6 @@
{ config, lib, pkgs, ... }:
{
imports = [
./spacenav.nix
];
}

View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
spacenavd
libspnav
];
systemd.services.spacenavd = {
wantedBy = [ "graphical.target" ];
script = "${pkgs.spacenavd}/bin/spacenavd -d";
};
}