about summary refs log tree commit diff stats
path: root/system/services/default.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-20 07:47:28 +0200
committerSoispha <soispha@vhack.eu>2023-05-20 08:02:02 +0200
commitc025d9c51a9fec2fd83cd396df8d348dbcde5a40 (patch)
treeff14117d8c06c76ea808dfa8e9a921ec4ee6a5ff /system/services/default.nix
parentFix(system): Add configs for networkmanager only if it's enabled (diff)
downloadnixos-config-c025d9c51a9fec2fd83cd396df8d348dbcde5a40.tar.gz
nixos-config-c025d9c51a9fec2fd83cd396df8d348dbcde5a40.zip
Refactor(system/services/printing): Split printing and scanning
Diffstat (limited to '')
-rw-r--r--system/services/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/system/services/default.nix b/system/services/default.nix
index 514ff604..d7505293 100644
--- a/system/services/default.nix
+++ b/system/services/default.nix
@@ -1,13 +1,14 @@
-{config, ...}: {
+{...}: {
   imports = [
-    ./printing
+    ./backup
+    ./dconf
     ./nix
+    ./openssh
+    ./printing
+    ./scanning
     ./snapper
     ./steam
-    ./dconf
-    ./openssh
-    ./backup
-    ./xdg
     ./swaylock
+    ./xdg
   ];
 }