dotfiles/nix/systems/edge.nix

35 lines
679 B
Nix
Raw Normal View History

inputs: {
system = "aarch64-linux";
username = "u0_a269";
homeDirectory = "/data/data/com.termux/files/home";
configuration =
{ pkgs, ... }: {
magic_rb = {
pins = {
inherit (inputs)
nixpkgs
nixpkgs-unstable
nixpkgs-master
home-manager
nixng
fenix;
};
overlays = inputs.self.overlays;
programs = {
bash.enable = true;
emacs = {
enable = true;
package = pkgs.emacs;
};
};
};
imports = [ ../home-manager/modules/default.nix ];
2021-02-02 20:35:29 +01:00
home.stateVersion = "20.09";
};
}