Little fix

This commit is contained in:
Lillian-Violet 2023-11-22 13:16:36 +01:00
parent 3d4750f0c9
commit 7f0670b044
2 changed files with 17 additions and 15 deletions

View file

@ -56,8 +56,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
# Coding: # Coding:
docker azuredatastudio
docker-compose
git git
kate kate
@ -129,19 +128,6 @@
userName = "Lillian-Violet"; userName = "Lillian-Violet";
}; };
config.docker-containers = {
mssql = {
image = "mcr.microsoft.com/mssql/server:latest";
ports = ["127.0.0.1:1433:1433"];
volumes = [
"/var/lib/mssql"
];
cmd = [
"--base-url"
"\"/mssql\""
];
};
};
# Nicely reload system units when changing configs # Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch"; systemd.user.startServices = "sd-switch";
} }

View file

@ -58,6 +58,8 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
age age
alejandra alejandra
docker
docker-compose
git-filter-repo git-filter-repo
home-manager home-manager
input-leap input-leap
@ -167,6 +169,20 @@
}; };
}; };
config.docker-containers = {
mssql = {
image = "mcr.microsoft.com/mssql/server:latest";
ports = ["127.0.0.1:1433:1433"];
volumes = [
"/var/lib/mssql"
];
cmd = [
"--base-url"
"\"/mssql\""
];
};
};
# Enable completion of system packages by zsh # Enable completion of system packages by zsh
environment.pathsToLink = ["/share/zsh"]; environment.pathsToLink = ["/share/zsh"];
} }