dotfiles/nixos/home-manager/default.nix

29 lines
471 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";
2022-03-10 12:25:23 +00:00
home.packages = with pkgs; [ ];
2020-04-19 12:23:21 +01:00
imports = [
2022-11-08 11:05:06 +00:00
./cli.nix
2020-04-19 12:23:21 +01:00
./links.nix
2021-07-18 08:20:21 +01:00
./scripts.nix
2022-11-08 11:05:06 +00:00
./programs.nix
./programs/emacs/home.nix
./programs/newsboat.nix
./programs/ssh.nix
./programs/tmux.nix
./programs/vim.nix
./programs/zsh.nix
2020-04-19 12:23:21 +01:00
];
}