moar -> moor
Some checks failed
ci/woodpecker/push/build-cache Pipeline failed

This commit is contained in:
Lucy Hochkamp 2025-10-27 10:50:07 +01:00
parent 3df730a55a
commit aacdbbb5f2
No known key found for this signature in database
3 changed files with 10 additions and 9 deletions

View file

@ -121,6 +121,10 @@
networking.hostName = x; networking.hostName = x;
imports = modules ++ [ (./instances/${x}) ]; imports = modules ++ [ (./instances/${x}) ];
_module.args.otherNodes = lib.filterAttrs (n: v: n != x) nodes; _module.args.otherNodes = lib.filterAttrs (n: v: n != x) nodes;
deployment.privilegeEscalationCommand = [
"run0"
"--unit=colmena-apply"
];
}; };
}) n; }) n;
in in
@ -134,10 +138,6 @@
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
nixpkgs = genPkgs "x86_64-linux"; nixpkgs = genPkgs "x86_64-linux";
}; };
deployment.privilegeEscalationCommand = [
"run0"
"--unit=colmena-apply"
];
} }
(importConfigs [ (importConfigs [
"ds9" "ds9"

View file

@ -9,13 +9,14 @@ in
{ {
options.xyno.git.enable = lib.mkEnableOption "xynos git config"; options.xyno.git.enable = lib.mkEnableOption "xynos git config";
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
programs.difftastic.git.enable = true;
programs.difftastic.enable = true;
programs.git = { programs.git = {
enable = true; enable = true;
difftastic.enable = true;
lfs.enable = true; lfs.enable = true;
# Default configs # Default configs
extraConfig = { settings = {
commit.gpgSign = true; commit.gpgSign = true;
gpg.format = "ssh"; gpg.format = "ssh";

View file

@ -130,7 +130,7 @@ in
imagemagick imagemagick
jq jq
lm_sensors lm_sensors
moar moor
neofetch neofetch
nix-output-monitor nix-output-monitor
poppler poppler
@ -145,7 +145,7 @@ in
programs.mosh.enable = true; programs.mosh.enable = true;
environment.variables.EDITOR = "hx"; environment.variables.EDITOR = "hx";
environment.variables.VISUAL = "hx"; environment.variables.VISUAL = "hx";
environment.variables.PAGER = "moar"; environment.variables.PAGER = "moor";
environment.shellAliases = { environment.shellAliases = {
l = "ls -alh"; l = "ls -alh";
@ -161,7 +161,7 @@ in
p = "cd ~/proj"; p = "cd ~/proj";
ytl = ''yt-dlp -f "bv*+mergeall[vcodec=none]" --audio-multistreams''; ytl = ''yt-dlp -f "bv*+mergeall[vcodec=none]" --audio-multistreams'';
sudo = "run0"; sudo = "run0";
less = "moar"; less = "moor";
}; };
}; };
} }