mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Actually use crash
This commit is contained in:
parent
a579c05f5d
commit
eafa0569c5
4 changed files with 31 additions and 3 deletions
21
flake.lock
generated
21
flake.lock
generated
|
@ -41,6 +41,26 @@
|
||||||
"type": "gitlab"
|
"type": "gitlab"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"crash": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1715772335,
|
||||||
|
"narHash": "sha256-UJqH5daLJL9xWwMSUtxN+Fes3eGZZtcV+Vbj2am8+FY=",
|
||||||
|
"owner": "RGBCube",
|
||||||
|
"repo": "crash",
|
||||||
|
"rev": "d17a8c9d054d8404c94a1dff8356a36eea428698",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "RGBCube",
|
||||||
|
"repo": "crash",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"darwin": {
|
"darwin": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
@ -629,6 +649,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"ageNix": "ageNix",
|
"ageNix": "ageNix",
|
||||||
|
"crash": "crash",
|
||||||
"fenix": "fenix",
|
"fenix": "fenix",
|
||||||
"ghostty": "ghostty",
|
"ghostty": "ghostty",
|
||||||
"ghosttyModule": "ghosttyModule",
|
"ghosttyModule": "ghosttyModule",
|
||||||
|
|
|
@ -63,7 +63,7 @@ in systemConfiguration {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.openssh.settings.AcceptEnv = mkForce "COLORTERM GIT_PROTOCOL";
|
services.openssh.settings.AcceptEnv = mkForce "SHELLS COLOTERM GIT_PROTOCOL";
|
||||||
|
|
||||||
services.forgejo = enabled {
|
services.forgejo = enabled {
|
||||||
lfs = enabled;
|
lfs = enabled;
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
{ config, lib, pkgs, ... }: with lib; merge
|
{ config, lib, pkgs, ... }: with lib; merge
|
||||||
|
|
||||||
(systemConfiguration {
|
(systemConfiguration {
|
||||||
users.defaultUserShell = pkgs.nushellFull;
|
users.defaultUserShell = pkgs.crash;
|
||||||
|
environment.sessionVariables.SHELLS = pipe [
|
||||||
|
pkgs.nushellFull
|
||||||
|
pkgs.fish
|
||||||
|
] [
|
||||||
|
(map getExe)
|
||||||
|
(concatStringsSep ":")
|
||||||
|
];
|
||||||
|
|
||||||
environment.shellAliases = {
|
environment.shellAliases = {
|
||||||
la = "ls --all";
|
la = "ls --all";
|
||||||
|
|
|
@ -68,7 +68,7 @@ in serverSystemConfiguration {
|
||||||
KbdInteractiveAuthentication = false;
|
KbdInteractiveAuthentication = false;
|
||||||
PasswordAuthentication = false;
|
PasswordAuthentication = false;
|
||||||
|
|
||||||
AcceptEnv = "COLORTERM";
|
AcceptEnv = "SHELLS COLORTERM";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue