summaryrefslogtreecommitdiff
path: root/system/services.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/services.nix')
-rw-r--r--system/services.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/system/services.nix b/system/services.nix
deleted file mode 100644
index c05e3b1..0000000
--- a/system/services.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{pkgs, ...}: {
- security.pam.sshAgentAuth.enable = true;
-
- time.timeZone = "Europe/Prague";
-
- services = {
- displayManager.ly.enable = true;
- printing.enable = true;
- libinput.enable = true;
- openssh.enable = true;
- tailscale.enable = true;
- gnome = {
- gnome-keyring.enable = true;
- gcr-ssh-agent.enable = false;
- };
- # Setup MPD as the backend of RMPC
- mpd = {
- enable = true;
- user = "mun";
- musicDirectory = "/home/mun/Music";
- extraConfig = ''
- audio_output {
- type "pipewire"
- name "PipeWire"
- }
- audio_output {
- type "fifo"
- name "my_fifo"
- path "/tmp/mpd.fifo"
- format "44100:16:2"
- }
- '';
- };
- };
- systemd.services.mpd.environment.XDG_RUNTIME_DIR = "/run/user/1000";
-}