Implement os setup using a function

This commit is contained in:
Manuel Thalmann 2024-07-16 15:22:15 +02:00
parent 667c3b904d
commit 9b595fb6dd
2 changed files with 3 additions and 2 deletions

View file

@ -2,6 +2,7 @@
begin
set -l dir (status dirname)
set -q CONFIG_MODULE || set -l CONFIG_MODULE "$dir/config.nix"
source "$dir/../../Common/OS/setup.fish"
source "$dir/../../Common/Scripts/config.fish"
set -l mountDir (getConfig valhalla.partition.rootDir)
@ -108,5 +109,5 @@ begin
end
end
source "$dir/../../Common/OS/setup.fish"
runSetup
end

View file

@ -1,5 +1,5 @@
#!/bin/env fish
begin
function runSetup
set -l dir (status dirname)
source "$dir/../Scripts/config.fish"
source "$dir/../Scripts/hooks.fish"