gimme yarn
This commit is contained in:
parent
21b3a32d90
commit
7dc03182a4
6 changed files with 43 additions and 14 deletions
|
|
@ -102,7 +102,7 @@
|
|||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./home/minimal.nix
|
||||
./home/on-server.nix
|
||||
];
|
||||
};
|
||||
alt = home-manager.lib.homeManagerConfiguration {
|
||||
|
|
|
|||
22
home/on-server.nix
Normal file
22
home/on-server.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ config, pkgs, inputs, lib, ... }:
|
||||
|
||||
{
|
||||
home.file.".npmrc".text = ''
|
||||
prefix = ${config.xdg.dataHome}/npm/packages
|
||||
'';
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
# development
|
||||
bundler
|
||||
bundix
|
||||
nodejs
|
||||
appimage-run
|
||||
yarn
|
||||
|
||||
];
|
||||
|
||||
imports = [
|
||||
./minimal.nix
|
||||
];
|
||||
}
|
||||
|
|
@ -51,11 +51,11 @@
|
|||
vlc
|
||||
|
||||
# development
|
||||
appimage-run
|
||||
bundler
|
||||
bundix
|
||||
nodejs
|
||||
yarn
|
||||
appimage-run
|
||||
|
||||
# secrets
|
||||
libsecret
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||
|
||||
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
recommendedProxySettings = true;
|
||||
|
|
@ -16,5 +15,4 @@
|
|||
acceptTerms = true;
|
||||
defaults.email = "till@ktiu.net";
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
9
system/web-server/ksh-map.nix
Normal file
9
system/web-server/ksh-map.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.nginx.virtualHosts."karte.nichtzudritt.de" = {
|
||||
addSSL = true;
|
||||
enableACME = true;
|
||||
root = "/var/www/ksh-map/dist";
|
||||
};
|
||||
}
|
||||
|
|
@ -2,16 +2,16 @@
|
|||
|
||||
{
|
||||
|
||||
services.postfix = {
|
||||
enable = true;
|
||||
domain = "ktiu.net";
|
||||
virtual = [
|
||||
"@ktiu.net till"
|
||||
"till till"
|
||||
"uni@ktiu.net straube@geo.uni-frankfurt.de"
|
||||
"meetup@ktiu.net straube@geo.uni-frankfurt.de"
|
||||
];
|
||||
};
|
||||
# services.postfix = {
|
||||
# enable = true;
|
||||
# domain = "ktiu.net";
|
||||
# virtual = [
|
||||
# "@ktiu.net till"
|
||||
# "till till"
|
||||
# "uni@ktiu.net straube@geo.uni-frankfurt.de"
|
||||
# "meetup@ktiu.net straube@geo.uni-frankfurt.de"
|
||||
# ];
|
||||
# };
|
||||
|
||||
services.opendkim = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue