17 lines
323 B
Nix
17 lines
323 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./dunst ./diskstation ./emacs ./agenix.nix ./picom.nix ];
|
|
|
|
home-manager.users.moritz.services = { kdeconnect.enable = true; };
|
|
|
|
services = {
|
|
printing.enable = true;
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
pulse.enable = true;
|
|
};
|
|
};
|
|
}
|