From e391e6e42bc206f45c6d1eaedf96ecc5082813d8 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 4 Sep 2022 03:15:17 -0400 Subject: [PATCH] Tweak nix-on-droid defaults --- modules/nix-on-droid/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/modules/nix-on-droid/default.nix b/modules/nix-on-droid/default.nix index e1bf741..2101e20 100644 --- a/modules/nix-on-droid/default.nix +++ b/modules/nix-on-droid/default.nix @@ -10,12 +10,7 @@ in options = with lib; with nLib; { }; config = { - # Enable unfree packages - nixpkgs.config.allowUnfree = config.nathan.config.enableUnfree; - # Work around for discord jank ugh - nixpkgs.config.permittedInsecurePackages = [ - "electron-13.6.9" - ]; + # Set system state version system.stateVersion = "22.05"; # Enable flakes @@ -24,5 +19,8 @@ in nix.extraOptions = '' experimental-features = nix-command flakes ''; + + # Set login shell + user.shell = "#{pkgs.fish}/bin/fish"; }; }