aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
Commit message (Collapse)AuthorAge
* flake: add check using statixKarel Kočí2023-03-16
|
* Rework the whole NixOS and packagesKarel Kočí2023-03-16
| | | | | This uses now primarilly overlays and also variable NIX_PROFILES to chain-load shellrc from bashrc.d and zshrc.d.
* flake.nix: fix invalid attribute accessKarel Kočí2022-11-16
| | | | Just missing 's'.
* Add ability to include this in profileKarel Kočí2022-10-13
| | | | | | | | | | | | | | | | | The modification to load bashrc and zshrc from profiles is required. The following code show the required settings in NixOS to make this work. shellInit = dir: concatMapStrings (v: '' for file in ${v}/etc/${dir}/*; do [ -f "$file" ] || continue . "$file" done '') config.environment.profiles; environment.etc."bashrc.local".text = shellInit "bashrc.d"; environment.etc."zshrc.local".text = shellInit "zshrc.d";
* shellrc-completion: fix invalid escapingKarel Kočí2022-10-13
|
* shellrc.d/nix: add devzshKarel Kočí2022-08-10
|
* bashrc.d: do not use our own variable to detect developKarel Kočí2022-06-20
|
* Allow using in nix develop and use prompt to signal itKarel Kočí2022-06-11
|
* flake: rename internally used variableKarel Kočí2022-06-10
|
* flake.nix: use interactiveShellInit instead of loginShellInitKarel Kočí2022-04-09
|
* flake.nix: enable shellrc in defaultKarel Kočí2022-04-09
|
* Add flake.nixKarel Kočí2022-04-04