dotfiles/nixos/home-manager/default.nix

37 lines
598 B
Nix
Raw Normal View History

2023-08-13 17:00:41 +01:00
{
config,
pkgs,
inputs,
lib,
...
}: let
username = "cyryl";
2022-12-02 14:56:05 +00:00
in {
2024-04-27 11:33:38 +01:00
home = {
inherit username;
sessionVariables = {
LC_ALL = "en_GB.UTF-8";
LANG = "en_GB.UTF-8";
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
};
2020-04-19 12:23:21 +01:00
2024-04-27 11:33:38 +01:00
packages = with pkgs; [];
2020-04-19 12:23:21 +01:00
2024-04-27 11:33:38 +01:00
homeDirectory = lib.mkDefault "/home/${username}";
stateVersion = "23.11";
};
news.display = "show";
2022-12-02 14:56:05 +00:00
programs.home-manager.enable = true;
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/newsboat.nix
./programs/ssh.nix
./programs/tmux.nix
2020-04-19 12:23:21 +01:00
];
}