This commit is contained in:
Lucy Hochkamp 2025-04-11 15:34:25 +02:00
parent 44307a3f6f
commit b69b80c93f
No known key found for this signature in database
13 changed files with 237 additions and 123 deletions

View file

@ -16,6 +16,14 @@ in
security.sudo.enable = false;
nix.settings = {
substituters = [
"https://cache.lix.systems"
"https://helix.cachix.org"
];
trusted-public-keys = [
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
"helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
];
trusted-users = lib.mkDefault [
"root"
"@wheel"
@ -62,6 +70,7 @@ in
ripgrep
pv
yt-dlp
moar
helix
lm_sensors
dig
@ -70,9 +79,10 @@ in
programs.mosh.enable = true;
environment.variables.EDITOR = "hx";
environment.variables.VISUAL = "hx";
environment.variables.PAGER= "moar";
environment.shellAliases = {
l = "ls -al";
l = "ls -alh";
n = "yazi";
gc = "git commit -v";
gpl = "git pull";