dotfiles/modules/services/default.nix

25 lines
351 B
Nix
Raw Normal View History

2021-09-14 20:55:50 +02:00
{ config, lib, pkgs, ... }:
{
imports = [
./dunst
2021-09-14 23:01:04 +02:00
./diskstation
2021-09-14 20:55:50 +02:00
./emacs
./agenix.nix
./picom.nix
];
home-manager.users.moritz.services = {
2021-09-15 00:41:46 +02:00
kdeconnect.enable = true;
2021-09-14 20:55:50 +02:00
};
2021-09-29 13:06:28 +02:00
services = {
printing.enable = true;
pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
};
2021-09-14 20:55:50 +02:00
}