dotfiles/nixos/home-manager/default.nix

28 lines
449 B
Nix
Raw Normal View History

2021-09-22 13:41:05 +01:00
{ config, pkgs, inputs, ... }:
2020-04-19 12:23:21 +01:00
{
home.sessionVariables = {
2021-11-22 19:32:26 +00:00
LC_ALL = "en_GB.UTF-8";
LANG = "en_GB.UTF-8";
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
2020-04-19 12:23:21 +01:00
};
news.display = "show";
2020-04-19 13:30:00 +01:00
home.packages = with pkgs; [
];
2020-04-19 12:23:21 +01:00
imports = [
./programs/tmux.nix
./programs/zsh.nix
./programs/vim.nix
2021-05-28 15:58:33 +01:00
./programs/emacs/home.nix
2020-07-04 11:34:18 +01:00
./programs/newsboat.nix
2020-04-19 12:23:21 +01:00
./programs.nix
./links.nix
2021-07-18 08:20:21 +01:00
./scripts.nix
2020-04-19 12:23:21 +01:00
./cli.nix
];
}