17 lines
273 B
Nix
17 lines
273 B
Nix
{ lib, config, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
environment.systemPackages = with pkgs; [
|
|
brightnessctl
|
|
emacs-nox
|
|
];
|
|
|
|
programs.dconf.enable = true;
|
|
services.gnome.gnome-keyring.enable = true;
|
|
programs.kdeconnect.enable = true;
|
|
};
|
|
}
|