19 lines
330 B
Nix
19 lines
330 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
#./disko.nix
|
|
|
|
../../modules/common
|
|
../../modules/desktop
|
|
../../modules/home-manager
|
|
];
|
|
|
|
common.syncthing = {
|
|
enable = true;
|
|
devices = {
|
|
Anton = { id = "WCDBADD-UPKCACI-X2YJOIO-5QC44PL-DBCR6TS-ADVQV33-HSMF32O-FOKMKAU"; };
|
|
};
|
|
};
|
|
|
|
}
|