rename common to modules

This commit is contained in:
Andreas Zweili 2021-12-22 17:57:34 +01:00
parent c465e7c620
commit a96c64e0a4
11 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
passwordFile = "/home/andreas/git_repos/nixos/secrets/passwords/restic.key"; passwordFile = "/home/andreas/git_repos/nixos/secrets/passwords/restic.key";
paths = [ "/home/andreas/" ]; paths = [ "/home/andreas/" ];
extraBackupArgs = [ extraBackupArgs = [
"--exclude-file=/home/andreas/git_repos/nixos/common/restic/excludes.txt" "--exclude-file=/home/andreas/git_repos/nixos/modules/restic/excludes.txt"
]; ];
}; };

View File

@ -7,7 +7,7 @@
{ {
imports = imports =
[ [
../../common/desktop.nix ../../modules/desktop.nix
../../hardware/bluetooth ../../hardware/bluetooth
./hardware-configuration.nix ./hardware-configuration.nix
]; ];

View File

@ -8,7 +8,7 @@
imports = imports =
[ [
# Include the results of the hardware scan. # Include the results of the hardware scan.
../../common/desktop.nix ../../modules/desktop.nix
../../hardware/bluetooth ../../hardware/bluetooth
./hardware-configuration.nix ./hardware-configuration.nix
]; ];

View File

@ -8,7 +8,7 @@
imports = imports =
[ [
# Include the results of the hardware scan. # Include the results of the hardware scan.
../../common/desktop.nix ../../modules/desktop.nix
./hardware-configuration.nix ./hardware-configuration.nix
]; ];