move stuff out of /sys/profiles/*/default.nix

This commit is contained in:
xunuwu 2025-06-06 11:43:27 +02:00
parent 7f28811aea
commit 8e45ad0537
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
6 changed files with 10 additions and 13 deletions

View file

@ -42,7 +42,7 @@
/hardware/steam-hardware.nix /hardware/steam-hardware.nix
/hardware/bluetooth.nix /hardware/bluetooth.nix
/nix/default.nix # TODO slim this down /nix/nix.nix
/nix/gc.nix /nix/gc.nix
/network/tailscale.nix /network/tailscale.nix

View file

@ -37,7 +37,6 @@
/core/users.nix /core/users.nix
/core/ssh.nix /core/ssh.nix
/core/locale.nix /core/locale.nix
/nix
/programs/zsh.nix /programs/zsh.nix
/programs/fish.nix /programs/fish.nix
/core/tools.nix /core/tools.nix
@ -46,6 +45,7 @@
# core.docs # core.docs
/core/gvfs.nix /core/gvfs.nix
/nix/nix.nix
/nix/gc.nix /nix/gc.nix
/hardware/graphics.nix /hardware/graphics.nix
@ -70,7 +70,8 @@
/programs/tools.nix /programs/tools.nix
/programs/thunar.nix /programs/thunar.nix
/services /services/psd.nix
/services/dbus-broker.nix
/services/pipewire.nix /services/pipewire.nix
/services/podman.nix /services/podman.nix
/services/flatpak.nix /services/flatpak.nix

View file

@ -0,0 +1,3 @@
{
services.dbus.implementation = "broker";
}

View file

@ -1,10 +0,0 @@
{
services = {
dbus.implementation = "broker";
psd = {
enable = true;
resyncTimer = "10m";
};
};
}

View file

@ -0,0 +1,3 @@
{
services.psd.enable = true;
}