dotfiles

Check-in [24c8289a0d]
Login

Check-in [24c8289a0d]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:fix: home-common: improve setup.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 24c8289a0dd000ad98243f7d95f6430af5291415
User & Date: necrophcodr 2023-01-12 21:59:32.756
Context
2023-01-16
13:11
fix: win2: enable firewall again. check-in: 9fd7ec5b88 user: steffen tags: trunk
2023-01-12
21:59
fix: home-common: improve setup. check-in: 24c8289a0d user: necrophcodr tags: trunk
21:59
feat: common: add TZ envvar. check-in: 16320ad9d9 user: necrophcodr tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to common.nix.
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
    # misc
    par2cmdline
    fossil
    xclip
  ];

  home.shellAliases = {
    "ls" = "exa";
  };

  programs.bat.enable = true;
  programs.broot.enable = true;
  programs.direnv.enable = true;
  programs.exa.enable = true;

  programs.bash =  {
    enable = true;
    enableVteIntegration = true;
    historyFile = "${config.xdg.dataHome}/bash/history";
  };








|


<


<







26
27
28
29
30
31
32
33
34
35

36
37

38
39
40
41
42
43
44
    # misc
    par2cmdline
    fossil
    xclip
  ];

  home.shellAliases = {
    "ls" = "${pkgs.exa}/bin/exa";
  };


  programs.broot.enable = true;
  programs.direnv.enable = true;


  programs.bash =  {
    enable = true;
    enableVteIntegration = true;
    historyFile = "${config.xdg.dataHome}/bash/history";
  };