System/modules/nix-on-droid/default.nix

27 lines
495 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
inherit (import ../lib.nix { inherit lib; inherit pkgs; }) nLib;
in
2022-09-04 02:46:27 -04:00
{
imports = [
../options.nix
];
options = with lib; with nLib; { };
2022-09-04 02:48:19 -04:00
config = {
2022-09-04 03:15:17 -04:00
2022-09-04 02:48:19 -04:00
# Set system state version
system.stateVersion = "22.05";
# Enable flakes
# Enable nix flakes
nix.package = pkgs.nixFlakes;
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
2022-09-04 03:15:17 -04:00
# Set login shell
user.shell = "#{pkgs.fish}/bin/fish";
2022-09-04 02:48:19 -04:00
};
2022-09-04 02:46:27 -04:00
}