From 51623c7932a7fe25785c6b0528805d5066984817 Mon Sep 17 00:00:00 2001 From: Nio Date: Thu, 7 May 2026 09:01:18 +0200 Subject: [PATCH] Autostart --- autostart.nix | 5 +++++ configuration.nix | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 autostart.nix diff --git a/autostart.nix b/autostart.nix new file mode 100644 index 0000000..9999225 --- /dev/null +++ b/autostart.nix @@ -0,0 +1,5 @@ +{ ... }: +{ + onedrive.enable = true; + +} diff --git a/configuration.nix b/configuration.nix index 04bd8e2..e445fd7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -9,6 +9,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix ./programs.nix + ./autostart.nix ]; # Bootloader. @@ -105,7 +106,6 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - git # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # wget ];