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

31 lines
617 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
inherit (import ../lib.nix {
inherit lib;
inherit pkgs;
})
nLib;
in {
imports = [ ../options.nix ./programs/util.nix ];
2022-09-04 02:46:27 -04:00
options = with lib; with nLib; { };
2022-09-04 02:48:19 -04:00
config = {
environment.packages = with pkgs; [ nettools ];
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
2022-09-04 03:17:19 -04:00
user.shell = "${pkgs.fish}/bin/fish";
2022-09-04 04:09:33 -04:00
nathan.config.user = "nix-on-droid";
2022-09-04 02:48:19 -04:00
};
2022-09-04 02:46:27 -04:00
}