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:
|
build:
|
||||||
sudo nixos-rebuild build --flake .
|
sudo nixos-rebuild build --flake .
|
||||||
|
|
||||||
|
switch:
|
||||||
|
sudo nixos-rebuild switch --flake .
|
||||||
|
|
||||||
mu:
|
mu:
|
||||||
mu init --maildir ~/.mail \
|
mu init --maildir ~/.mail \
|
||||||
--my-address=e.litherlandsmith@proton.me \
|
--my-address=e.litherlandsmith@proton.me \
|
||||||
|
|
|
@ -16,11 +16,8 @@ in {
|
||||||
gnumake
|
gnumake
|
||||||
];
|
];
|
||||||
localBinInPath = true;
|
localBinInPath = true;
|
||||||
shellAliases.rebuild = ''
|
shellAliases.rebuild =
|
||||||
sudo nixos-rebuild switch --flake "${flakeURL}" --refresh \
|
''sudo nixos-rebuild switch --flake "${flakeURL}" --refresh'';
|
||||||
&& hyprctl reload \
|
|
||||||
&& doom sync -p
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
console.keyMap = "uk";
|
console.keyMap = "uk";
|
||||||
programs.ssh.startAgent = true;
|
programs.ssh.startAgent = true;
|
||||||
|
|
Loading…
Reference in a new issue