Udiskie, KDE Connect, and Config Cleanup
- Move shell and font configs out of configuration.nix and into separate files - Add udiskie to dwm - Add kdeconnect for phone connection
This commit is contained in:
@ -9,5 +9,6 @@
|
||||
./passwords.nix
|
||||
./xdg.nix
|
||||
./screenshot.nix
|
||||
./phone.nix
|
||||
];
|
||||
}
|
||||
|
10
user/utilities/phone.nix
Normal file
10
user/utilities/phone.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, systemSettings, ... }:
|
||||
|
||||
{
|
||||
programs.kdeconnect = {
|
||||
enable = true;
|
||||
package = (if systemSettings.desktop == "gnome"
|
||||
then pkgs.gnomeExtensions.gsconnect
|
||||
else pkgs.libsForQt5.kdeconnect-kde);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user