chore: remove redundant shellAliases on winters

This commit is contained in:
Swarsel 2024-09-23 23:08:44 +02:00
parent f9a181a955
commit a0f6a61456
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 11 additions and 6 deletions

View file

@ -2051,9 +2051,6 @@ My work machine. Built for more security, this is the gold standard of my config
mpd = false; mpd = false;
matrix = false; matrix = false;
}; };
shellAliases = {
nswitch = "cd /.dotfiles; sudo nixos-rebuild --flake .#$(hostname) switch; cd -;";
};
}; };
} }
@ -6583,6 +6580,15 @@ Also, the system state version is set here. No need to touch it.
} }
#+end_src #+end_src
**** zfs
#+begin_src nix :tangle profiles/server/common/zfs.nix
{ pkgs, lib, config, ... }:
{
}
#+end_src
**** NGINX **** NGINX
#+begin_src nix :tangle profiles/server/common/nginx.nix #+begin_src nix :tangle profiles/server/common/nginx.nix

View file

@ -0,0 +1,2 @@
{ pkgs, lib, config, ... }:
{ }

View file

@ -48,9 +48,6 @@
mpd = false; mpd = false;
matrix = false; matrix = false;
}; };
shellAliases = {
nswitch = "cd /.dotfiles; sudo nixos-rebuild --flake .#$(hostname) switch; cd -;";
};
}; };
} }