chore: fix nixpkgs 25.05 deprecation warnings
This commit is contained in:
@@ -61,7 +61,7 @@ in {
|
||||
# Adjust zsh prompt for dev archetype: show '#' instead of '%'
|
||||
home-manager.sharedModules = lib.mkAfter [
|
||||
{
|
||||
programs.zsh.initExtra = lib.mkAfter ''
|
||||
programs.zsh.initContent = lib.mkAfter ''
|
||||
PROMPT="# %~ "
|
||||
'';
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ in {
|
||||
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
pinentryPackage = pkgs.pinentry-tty;
|
||||
pinentry.package = pkgs.pinentry-tty;
|
||||
enableZshIntegration = true;
|
||||
defaultCacheTtl = 60 * 60;
|
||||
maxCacheTtl = 60 * 60 * 24;
|
||||
@@ -67,9 +67,9 @@ in {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
userName = "yukkop";
|
||||
userEmail = "hectic.yukkop@gmail.com";
|
||||
extraConfig = {
|
||||
settings = {
|
||||
user.name = "yukkop";
|
||||
user.email = "hectic.yukkop@gmail.com";
|
||||
push.autoSetupRemote = true;
|
||||
init.defaultBranch = "master";
|
||||
};
|
||||
|
||||
@@ -35,7 +35,7 @@ in {
|
||||
|
||||
services.hectic-landing = {
|
||||
enable = true;
|
||||
package = inputs.hectic-landing.packages.${pkgs.system}.hectic-landing;
|
||||
package = inputs.hectic-landing.packages.${pkgs.stdenv.hostPlatform.system}.hectic-landing;
|
||||
domain = domain;
|
||||
port = 3000;
|
||||
host = "127.0.0.1";
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
hardware.opengl.enable = true;
|
||||
hardware.graphics.enable = true;
|
||||
|
||||
console.keyMap = "us";
|
||||
|
||||
@@ -58,11 +58,13 @@
|
||||
|
||||
services.samba = {
|
||||
enable = true;
|
||||
shares.sshfs = {
|
||||
path = "/home/yukkop/umbriel/vproxy";
|
||||
browseable = true;
|
||||
"read only" = false;
|
||||
"guest ok" = true;
|
||||
settings = {
|
||||
sshfs = {
|
||||
path = "/home/yukkop/umbriel/vproxy";
|
||||
browseable = true;
|
||||
"read only" = false;
|
||||
"guest ok" = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user