Skip to content

Commit

Permalink
before update
Browse files Browse the repository at this point in the history
  • Loading branch information
Czichy committed Feb 28, 2025
1 parent 70c49a4 commit e99d20d
Show file tree
Hide file tree
Showing 8 changed files with 323 additions and 240 deletions.
30 changes: 15 additions & 15 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions modules/home-manager/profiles/headless.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ in {
profiles.minimal.enable = _ true;

programs = {
# shells.nushell.enable = _ true;
shells.fish.enable = _ true;
# starship.enable = _ true;
shells.nushell.enable = _ true;
starship.enable = _ true;
# shells.fish.enable = _ true;
editors.helix.enable = _ true;
file-managers.yazi.enable = _ true;

Expand Down
2 changes: 1 addition & 1 deletion modules/home-manager/programs/direnv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ in {
programs.direnv = {
enable = _ true;
enableBashIntegration = _ (isModuleLoadedAndEnabled config "tensorfiles.hm.programs.shells.bash");
enableFishIntegration = _ (isModuleLoadedAndEnabled config "tensorfiles.hm.programs.shells.fish");
# enableFishIntegration = _ (isModuleLoadedAndEnabled config "tensorfiles.hm.programs.shells.fish");
enableNushellIntegration = _ (
isModuleLoadedAndEnabled config "tensorfiles.hm.programs.shells.nushell"
);
Expand Down
6 changes: 5 additions & 1 deletion modules/home-manager/programs/shells/fish/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,13 @@ in {
})
# |----------------------------------------------------------------------| #
(mkIf impermanenceCheck {
home.file."${config.xdg.cacheHome}/oh-my-fish/.keep".enable = false;
# home.file."${config.xdg.cacheHome}/oh-my-fish/.keep".enable = false;

home.persistence."${impermanence.persistentRoot}${config.home.homeDirectory}" = {
directories = [
".local/share/atuin"
".local/share/zoxide"
];
files = [".local/share/fish"];
};
})
Expand Down
4 changes: 2 additions & 2 deletions modules/home-manager/programs/shells/nushell/env.nu
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Nushell Environment Config
$env.EDITOR = "hx"
$env.BROWSER = "firefox"
$env.BROWSER = "vivaldi"

# Nushell Environment Config File
#
Expand Down Expand Up @@ -88,4 +88,4 @@ $env.NU_PLUGIN_DIRS = [
]

# To add entries to PATH (on Windows you might use Path), you can use the following pattern:
# $env.PATH = ($env.PATH | split row (char esep) | prepend '/some/path')
# $env.PATH = ($env.PATH | split row (char esep) | prepend '/some/path')
Loading

0 comments on commit e99d20d

Please sign in to comment.