33 lines
730 B
Nix
33 lines
730 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
inputs.zen-browser.homeModules.twilight
|
|
];
|
|
|
|
# Home Manager needs a bit of information about you and the paths it should
|
|
# manage.
|
|
home.username = "jack";
|
|
home.homeDirectory = "/home/jack";
|
|
|
|
home.stateVersion = "25.05"; # Please read the comment before changing.
|
|
|
|
# The home.packages option allows you to install Nix packages into your
|
|
# environment.
|
|
home.packages = [
|
|
];
|
|
|
|
programs.zen-browser.enable = true;
|
|
|
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
|
# plain files is through 'home.file'.
|
|
home.file = {
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|