Update from joey@joey-laptop: Enable KDE Connect for Plasma 6
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s
Some checks failed
SSH and echo to file / ssh (push) Failing after 3s
This commit is contained in:
parent
798a08295e
commit
dff2c6f44f
@ -11,16 +11,10 @@
|
||||
fzf
|
||||
fd
|
||||
flatpak
|
||||
kdeconnect
|
||||
];
|
||||
home.file = {};
|
||||
|
||||
# Programs
|
||||
## KDE Connect
|
||||
services.kdeconnect = {
|
||||
enable = true;
|
||||
indicator = true;
|
||||
};
|
||||
## Hyprland
|
||||
programs.kitty.enable = true;
|
||||
#wayland.windowManager.hyprland = {
|
||||
@ -47,6 +41,7 @@
|
||||
shellAliases = {
|
||||
nos = "sudo nixos-rebuild switch --flake .";
|
||||
hms = "home-manager switch --flake .";
|
||||
nu = "nos && hms";
|
||||
};
|
||||
history = {
|
||||
share = true;
|
||||
|
@ -5,6 +5,7 @@
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
./flatpak.nix
|
||||
./kde.nix
|
||||
];
|
||||
|
||||
environment.etc."current-system-packages".text =
|
||||
@ -56,7 +57,6 @@
|
||||
};
|
||||
|
||||
services.displayManager.sddm.enable = true;
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
|
||||
services.xserver.enable = true;
|
||||
services.xserver.xkb = {
|
||||
@ -99,6 +99,7 @@
|
||||
swww
|
||||
kitty
|
||||
rofi-wayland
|
||||
kdePackages.kdeconnect-kde
|
||||
];
|
||||
|
||||
xdg.portal.enable = true;
|
||||
|
7
nix/nixos/kde.nix
Normal file
7
nix/nixos/kde.nix
Normal file
@ -0,0 +1,7 @@
|
||||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
programs.kdeconnect.enable = true;
|
||||
programs.kdeconnect.package = lib.mkForce pkgs.kdePackages.kdeconnect-kde;
|
||||
}
|
Loading…
Reference in New Issue
Block a user