diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-09-01 09:28:12 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-09-01 09:28:12 +0300 |
commit | 99493bc1ce990dd69984a9ad7028c3115e55a541 (patch) | |
tree | 63ce5935194103206cc24750d9e4e1abaa6798c3 /nixos/configuration.nix | |
parent | 5558d0d76128fd7655ad540f62721d63cf966e16 (diff) | |
parent | f4df5fd49ce3ed25094cf9861562531b1ff1da3d (diff) | |
download | nixos-configuration-99493bc1ce990dd69984a9ad7028c3115e55a541.tar.gz nixos-configuration-99493bc1ce990dd69984a9ad7028c3115e55a541.tar.bz2 nixos-configuration-99493bc1ce990dd69984a9ad7028c3115e55a541.zip |
Merge branch 'main' into ags-config
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 785228a..23387c9 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -46,7 +46,15 @@ }; }; }; - + xdg.portal = { + enable = true; + extraPortals = with pkgs; [ + xdg-desktop-portal-gtk + ]; + config = { + common.default = ["gtk"]; + }; + }; systemd.user.services.mpris-proxy = { description = "Mpris proxy"; after = ["network.target" "sound.target"]; @@ -74,13 +82,14 @@ ]; # turned off because timedatectl doesn't like it time.hardwareClockInLocalTime = false; + time.timeZone = "Europe/Athens"; services = { #displayManager.sddm = { # enable = true; # wayland.enable = true; # theme = "${import ./sddm-theme.nix {inherit pkgs;}}"; #}; - automatic-timezoned.enable = true; + #automatic-timezoned.enable = true; openssh = { enable = true; settings = { |