Merge pull request #305 from genebean/element

Fix Element
This commit is contained in:
Gene Liverman 2023-10-06 21:51:04 -04:00 committed by GitHub
commit e2335dc6ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,6 +93,11 @@ in {
# Allow unfree packages
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:
# $ nix search wget
environment.systemPackages = with pkgs; [
@ -132,6 +137,9 @@ in {
# Used by Nautilus
services.gvfs.enable = true;
# Provides secret storage
services.gnome.gnome-keyring.enable = true;
nix.settings = {
allowed-users = [ "${user}" ];
experimental-features = [