Tweak nix-on-droid defaults

This commit is contained in:
Nathan McCarty 2022-09-04 03:15:17 -04:00
parent 092a0d0010
commit e391e6e42b
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 4 additions and 6 deletions

View File

@ -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";
};
}