added capability to switch to windows with a command

This commit is contained in:
Nickiel12 2023-09-27 16:38:51 -07:00
parent 5dd23b18e8
commit e8124462f2

View file

@ -5,6 +5,10 @@ let
in in
{ {
home.packages = with pkgs; [
grub2_light
];
programs.zsh = { programs.zsh = {
enable = true; # technically also enabled in user shell enable = true; # technically also enabled in user shell
dotDir = ".config/zsh"; dotDir = ".config/zsh";
@ -41,6 +45,7 @@ in
gust = "/home/nixolas/Documents/Gust/target/debug/gust"; gust = "/home/nixolas/Documents/Gust/target/debug/gust";
rm = "rmtrash"; rm = "rmtrash";
open-config = "cd ~/Documents/nicks-nix-config; nvim"; open-config = "cd ~/Documents/nicks-nix-config; nvim";
switch-to-windows = "sudo grub-reboot 1; sudo reboot";
}; };
}; };