18 lines
282 B
Nix
18 lines
282 B
Nix
{ config, lib, pkgs, inputs, ... }: {
|
|
|
|
imports = [
|
|
./terminal
|
|
./pywal
|
|
./calcurse
|
|
];
|
|
|
|
config = {
|
|
|
|
home.packages = [
|
|
inputs.nixvim.packages.${pkgs.system}.default
|
|
];
|
|
|
|
home.sessionVariables.EDITOR = "nvim";
|
|
};
|
|
}
|