diff --git a/home-manager/apps.nix b/home-manager/apps.nix index 71c1067..bc9d15f 100644 --- a/home-manager/apps.nix +++ b/home-manager/apps.nix @@ -6,7 +6,9 @@ pkgs, ... }: { - imports = []; + imports = [ + inputs.sops-nix.homeManager.sops + ]; nixpkgs = { overlays = [ @@ -56,7 +58,6 @@ reaper retext solaar - syncthing spotify thunderbird whatsapp-for-linux diff --git a/home-manager/server-apps.nix b/home-manager/server-apps.nix index 27dfe22..3ed68c5 100644 --- a/home-manager/server-apps.nix +++ b/home-manager/server-apps.nix @@ -6,7 +6,9 @@ pkgs, ... }: { - imports = []; + imports = [ + inputs.sops-nix.homeManagerModules.sops + ]; nixpkgs = { overlays = [ diff --git a/machines/common/configuration.nix b/machines/common/configuration.nix index a5b270a..eca3c4b 100644 --- a/machines/common/configuration.nix +++ b/machines/common/configuration.nix @@ -51,6 +51,36 @@ fallbackDns = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ]; }; + # services.syncthing = { + # enable = true; + # user = "horseman"; + # dataDir = "/home/horseman"; + # configDir = "/home/horseman/.config/syncthing"; + # overrideDevices = true; + # overrideFolders = true; + # settings = { + # devices = { + # "luna" = ; + # "terra" = ; + # "solis" = ; + # }; + # folders = { + # "Documents" = { + # path = "/home/horseman/Documents"; + # devices = [ "solis" "terra" "luna" ]; + # }: + # "Programming" = { + # path = "/home/horseman/Programming"; + # devices = [ "solis" "terra" "luna" ]; + # }; + # }; + # gui = { + # user = ; + # password = ; + # }; + # }; + # }; + users.users = { horseman = { initialPassword = "1234";