Fix Element

This commit is contained in:
Gene Liverman 2023-10-06 21:50:37 -04:00
parent 4641e6a4ee
commit 82c5aacfa0

View file

@ -93,6 +93,11 @@ in {
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Well, this sucks, hopefully a fixed version is available soon...
nixpkgs.config.permittedInsecurePackages = [
"electron-21.4.4"
];
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -132,6 +137,9 @@ in {
# Used by Nautilus # Used by Nautilus
services.gvfs.enable = true; services.gvfs.enable = true;
# Provides secret storage
services.gnome.gnome-keyring.enable = true;
nix.settings = { nix.settings = {
allowed-users = [ "${user}" ]; allowed-users = [ "${user}" ];
experimental-features = [ experimental-features = [