dotfiles/nixos/systems/edge.nix

15 lines
288 B
Nix
Raw Normal View History

2021-02-02 20:35:29 +01:00
{
system = "aarch64-linux";
username = "u0_a269";
homeDirectory = "/data/data/com.termux/files/home";
2021-02-02 20:35:29 +01:00
hostname = "edge";
2021-02-02 20:35:29 +01:00
modules = [
# ../hm-modules/emacs
2021-02-02 20:36:21 +01:00
({ nixpkgs, ... }: _: {
home.packages = [ nixpkgs.emacs ];
2021-02-02 20:35:29 +01:00
home.stateVersion = "20.09";
})
];
}