diff --git a/hosts/phantom/default.nix b/hosts/phantom/default.nix index 1b0d3cb..9111434 100644 --- a/hosts/phantom/default.nix +++ b/hosts/phantom/default.nix @@ -53,7 +53,7 @@ # Set your time zone. time.timeZone = "America/Sao_Paulo"; # Select internationalisation properties. - i18n.defaultLocale = "pt_BR.UTF-8"; + i18n.defaultLocale = "pt_BR.utf8"; boot.kernel.sysctl."fs.inotify.max_user_watches" = 1048576; diff --git a/hosts/phantom/nextcloud.nix b/hosts/phantom/nextcloud.nix index 28d76a1..a7ef9f3 100644 --- a/hosts/phantom/nextcloud.nix +++ b/hosts/phantom/nextcloud.nix @@ -1,6 +1,7 @@ { config, pkgs, + inputs, ... }: { @@ -10,7 +11,6 @@ hostName = "cloud.lelgenio.com"; https = true; config = { - dbtype = "sqlite"; # TODO: move to single postgres db adminpassFile = config.age.secrets.phantom-nextcloud.path; }; }; diff --git a/user/firefox.nix b/user/firefox.nix index 28ba913..1c891ae 100644 --- a/user/firefox.nix +++ b/user/firefox.nix @@ -61,7 +61,7 @@ in }; wayland.windowManager.sway = { extraConfig = '' - exec firefox-devedition + exec firefox ''; }; }; diff --git a/user/home.nix b/user/home.nix index 334e260..31e3871 100644 --- a/user/home.nix +++ b/user/home.nix @@ -152,7 +152,7 @@ text-editor = lib.mkDefault "kak.desktop"; image-viewer = lib.mkDefault "pqiv.desktop"; video-player = lib.mkDefault "mpv.desktop"; - web-browser = lib.mkDefault "firefox-devedition.desktop"; + web-browser = lib.mkDefault "firefox.desktop"; document-viewer = lib.mkDefault "org.pwmt.zathura.desktop"; file-manager = lib.mkDefault "thunar.desktop"; archive-manager = "engrampa.desktop"; diff --git a/user/variables.nix b/user/variables.nix index 65bc69a..84823d3 100644 --- a/user/variables.nix +++ b/user/variables.nix @@ -116,6 +116,6 @@ rec { dmenu = "bmenu"; desktop = "sway"; - browser = "firefox-devedition"; + browser = "firefox"; editor = "kakoune"; }