Tweak nix-on-droid defaults
This commit is contained in:
parent
092a0d0010
commit
e391e6e42b
|
@ -10,12 +10,7 @@ in
|
||||||
options = with lib; with nLib; { };
|
options = with lib; with nLib; { };
|
||||||
|
|
||||||
config = {
|
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
|
# Set system state version
|
||||||
system.stateVersion = "22.05";
|
system.stateVersion = "22.05";
|
||||||
# Enable flakes
|
# Enable flakes
|
||||||
|
@ -24,5 +19,8 @@ in
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Set login shell
|
||||||
|
user.shell = "#{pkgs.fish}/bin/fish";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue