added syncthing and flakes support

This commit is contained in:
Kristian Krsnik 2023-09-18 15:30:35 +02:00
parent c7a3adabed
commit 6411e64da0
Signed by: Kristian
GPG Key ID: FD1330AC9F909E85

View File

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