updated config for nixos laptop

This commit is contained in:
flupe 2021-03-17 12:06:30 +01:00
parent a6242afd41
commit 61238885d4
1 changed files with 2 additions and 2 deletions

View File

@ -9,14 +9,14 @@ import Route
config :: Achille.Config config :: Achille.Config
config = def config = def
{ deployCmd = Just "rsync -avzzr ~/dev/acatalepsie/_site/ --chmod=755 acatalepsie:/var/www/html" { deployCmd = Just $ "rsync -avzzr " <> root <> "_site/ --chmod=755 acatalepsie:/var/www/html"
, contentDir = root <> "content" , contentDir = root <> "content"
, outputDir = root <> "_site" , outputDir = root <> "_site"
, cacheFile = root <> ".cache" , cacheFile = root <> ".cache"
, ignore = [ "**/*.agdai" , ignore = [ "**/*.agdai"
, "**/*~" , "**/*~"
] ]
} where root = "/home/flupe/dev/acatalepsie/" } where root = "/home/flupe/dev/site/"
ropts :: Pandoc.ReaderOptions ropts :: Pandoc.ReaderOptions