dotfiles/nixos/systems/edge.nix
2021-02-02 20:36:21 +01:00

15 lines
288 B
Nix

{
system = "aarch64-linux";
username = "u0_a269";
homeDirectory = "/data/data/com.termux/files/home";
hostname = "edge";
modules = [
# ../hm-modules/emacs
({ nixpkgs, ... }: _: {
home.packages = [ nixpkgs.emacs ];
home.stateVersion = "20.09";
})
];
}