- Add configs for git, ssh and keys. Defines authorized_keys, profiles, ssh config, signing for git commits. - Add kcalc.
12 lines
335 B
Nix
12 lines
335 B
Nix
{ pkgs, ... }: {
|
|
services.displayManager.defaultSession = "plasma";
|
|
services.desktopManager.plasma6.enable = true;
|
|
programs.kdeconnect.enable = true;
|
|
environment.systemPackages = with pkgs.kdePackages; [ kcalc ];
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
elisa
|
|
kate
|
|
okular
|
|
discover
|
|
];
|
|
} |