Remove dependency on other software from rebuild command
This commit is contained in:
parent
b575f6af22
commit
c50ef8c1e9
3
Makefile
3
Makefile
|
@ -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 \
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue