From 20849595a61571ba47657da5d6c19f6f1fc952b1 Mon Sep 17 00:00:00 2001 From: andrey_varnavskiy Date: Tue, 26 Nov 2024 05:00:35 +0500 Subject: [PATCH] home-manager backup extension --- nixos/modules/default.nix | 1 + nixos/modules/home-manager.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 nixos/modules/home-manager.nix diff --git a/nixos/modules/default.nix b/nixos/modules/default.nix index 403e237..26ab16a 100644 --- a/nixos/modules/default.nix +++ b/nixos/modules/default.nix @@ -4,6 +4,7 @@ ./bluetooth.nix ./boot.nix ./env.nix + ./home-manager.nix ./hyprland.nix ./mime.nix ./net.nix diff --git a/nixos/modules/home-manager.nix b/nixos/modules/home-manager.nix new file mode 100644 index 0000000..c0b1b7c --- /dev/null +++ b/nixos/modules/home-manager.nix @@ -0,0 +1,3 @@ +{ + home-manager.backupFileExtension = "backup"; +}