Remove dependency on other software from rebuild command

This commit is contained in:
Evie Litherland-Smith 2023-10-22 05:33:51 +01:00
parent b575f6af22
commit c50ef8c1e9
2 changed files with 5 additions and 5 deletions

View file

@ -6,6 +6,9 @@ test:
build:
sudo nixos-rebuild build --flake .
switch:
sudo nixos-rebuild switch --flake .
mu:
mu init --maildir ~/.mail \
--my-address=e.litherlandsmith@proton.me \

View file

@ -16,11 +16,8 @@ in {
gnumake
];
localBinInPath = true;
shellAliases.rebuild = ''
sudo nixos-rebuild switch --flake "${flakeURL}" --refresh \
&& hyprctl reload \
&& doom sync -p
'';
shellAliases.rebuild =
''sudo nixos-rebuild switch --flake "${flakeURL}" --refresh'';
};
console.keyMap = "uk";
programs.ssh.startAgent = true;