summaryrefslogtreecommitdiff
path: root/system/services.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /system/services.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
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";
-}