Update Thor + aliases and webapp

This commit is contained in:
Filippo Berto 2022-05-01 18:32:47 +02:00
parent 626893fa50
commit 6a00933db4
4 changed files with 22 additions and 24 deletions

View file

@ -1,14 +1,15 @@
{ pkgs, ... }:
let
shellAliases = {
"dk" = "docker";
"dkc" = "docker-compose";
"dk" = "docker";
"hm" = "home-manager";
"jc" = "sudo journalctl";
"jcu" = "journalctl --user";
"nf" = "find /nix/store/ -maxdepth 1 | grep";
"ns" = "nix search github:NixOS/nixpkgs/release-21.11";
"nS" = "nix-shell";
"nr" = "nix run";
"ns" = "nix search nixpkgs";
"nS" = "nix shell";
"sc" = "sudo systemctl";
"scu" = "systemctl --user";
};