diff --git a/laptop.nix b/laptop.nix index 53ee0bc..99c194b 100644 --- a/laptop.nix +++ b/laptop.nix @@ -10,6 +10,10 @@ hms = "home-manager switch --flake $HOME/.config/home-manager#laptop"; }; + config.services = { + syncthing.enable = true; + }; + # Changes specific to the laptop config.dconf.settings = { "org/gnome/settings-daemon/plugins/power" = { @@ -17,4 +21,9 @@ power-button-action = "nothing"; }; }; + + config.nix = { + package = pkgs.nix; + settings.experimental-features = ["nix-command" "flakes"]; + }; }